openstack-resource-controller icon indicating copy to clipboard operation
openstack-resource-controller copied to clipboard

A set of Kubernetes controllers to manage your OpenStack infrastructure

Results 80 openstack-resource-controller issues
Sort by recently updated
recently updated
newest added

As discussed via Slack, there are no plans for Helm chart so far. So I like to push the idea with this issue. At least some basic Helm charts could...

Create these two ORC image objects: ```yaml --- apiVersion: openstack.k-orc.cloud/v1alpha1 kind: Image metadata: name: import-error-external-1 spec: cloudCredentialsRef: cloudName: openstack secretName: openstack-clouds managementPolicy: managed resource: name: cirros content: diskFormat: qcow2 download:...

A reconcile dependency is a normal dependency with the additional property that it may cause a fully reconciled object to restart its reconciliation. For example, a Server references one or...

I'm trying to create a subnet with: ```yaml --- apiVersion: openstack.k-orc.cloud/v1alpha1 kind: Subnet metadata: name: create-full-v4 spec: cloudCredentialsRef: cloudName: devstack secretName: openstack-clouds managementPolicy: managed networkRef: create-full-v4 resource: [snip] dnsPublishFixedIP: true...

As an OpenStack administrator, I want to configure various 'admin' resources in my cloud both immediately after installation and ongoing for the lifetime of the cloud. These resources include: *...

Required for simple server provisioning in the absence of additional tooling which can inject a key into e.g. cloud-init or ignition.

While writing dependencies tests for the routerinterface, I noticed that a routerinterface for which the `subnetRef` is yet to be created gets a status: ```yaml apiVersion: openstack.k-orc.cloud/v1alpha1 kind: RouterInterface metadata:...

Create a subnet with: ```yaml --- apiVersion: openstack.k-orc.cloud/v1alpha1 kind: Subnet metadata: name: subnet spec: cloudCredentialsRef: cloudName: openstack secretName: openstack-clouds managementPolicy: managed networkRef: existing-network resource: ipVersion: 4 cidr: 192.168.0.0/24 routerRef: non-existing-router...

Similar to what was done in https://github.com/gophercloud/gophercloud/commit/f018747518afe2ec0e703bb510112ba363a559a1 This allows to save a couple of minutes standing up devstack.

semver:patch

Using these two resources: ```yaml apiVersion: openstack.k-orc.cloud/v1alpha1 kind: Port metadata: name: create-full spec: cloudCredentialsRef: cloudName: openstack secretName: openstack-clouds managementPolicy: managed networkRef: create-full resource: addresses: - subnetRef: create-full --- apiVersion: openstack.k-orc.cloud/v1alpha1...