diff --git a/RELEASE.md b/RELEASE.md index 0c23a913e0..02de6157a4 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -35,7 +35,7 @@ 9. Perform the [image promotion process](https://github.com/kubernetes/k8s.io/tree/master/k8s.gcr.io#image-promoter). The staging repository is at https://console.cloud.google.com/gcr/images/k8s-staging-capi-openstack/GLOBAL. Be sure to choose the top level `capi-openstack-controller`, which will provide the multi-arch manifest, rather than one for a specific architecture. - Add the new sha=>tag mapping to the [images.yaml](https://github.com/kubernetes/k8s.io/edit/master/k8s.gcr.io/images/k8s-staging-capi-openstack/images.yaml) + Add the new sha=>tag mapping to the [images.yaml](https://github.com/kubernetes/k8s.io/edit/master/k8s.gcr.io/images/k8s-staging-capi-openstack/images.yaml) (use the sha of the image with the corresponding tag) 10. Finalise the release notes 11. Publish release. Use the pre-release option for release candidate versions of Cluster API Provider OpenStack. diff --git a/templates/cluster-template-without-lb.yaml b/templates/cluster-template-without-lb.yaml index 1557e3a521..012ed87658 100644 --- a/templates/cluster-template-without-lb.yaml +++ b/templates/cluster-template-without-lb.yaml @@ -25,7 +25,7 @@ spec: cloudName: ${OPENSTACK_CLOUD} cloudsSecret: name: ${CLUSTER_NAME}-cloud-config - namespace: ${CLUSTER_NAME} + namespace: ${NAMESPACE} controlPlaneEndpoint: host: ${OPENSTACK_CONTROLPLANE_IP} port: 6443 @@ -118,7 +118,7 @@ spec: cloudName: ${OPENSTACK_CLOUD} cloudsSecret: name: ${CLUSTER_NAME}-cloud-config - namespace: ${CLUSTER_NAME} + namespace: ${NAMESPACE} --- apiVersion: cluster.x-k8s.io/v1alpha3 kind: MachineDeployment @@ -154,7 +154,7 @@ spec: cloudName: ${OPENSTACK_CLOUD} cloudsSecret: name: ${CLUSTER_NAME}-cloud-config - namespace: ${CLUSTER_NAME} + namespace: ${NAMESPACE} flavor: ${OPENSTACK_NODE_MACHINE_FLAVOR} image: ${OPENSTACK_IMAGE_NAME} --- diff --git a/templates/cluster-template.yaml b/templates/cluster-template.yaml index 95fa304c75..4350013c69 100644 --- a/templates/cluster-template.yaml +++ b/templates/cluster-template.yaml @@ -25,7 +25,7 @@ spec: cloudName: ${OPENSTACK_CLOUD} cloudsSecret: name: ${CLUSTER_NAME}-cloud-config - namespace: ${CLUSTER_NAME} + namespace: ${NAMESPACE} managedAPIServerLoadBalancer: true apiServerLoadBalancerFloatingIP: ${OPENSTACK_CONTROLPLANE_IP} apiServerLoadBalancerPort: 6443 @@ -119,7 +119,7 @@ spec: cloudName: ${OPENSTACK_CLOUD} cloudsSecret: name: ${CLUSTER_NAME}-cloud-config - namespace: ${CLUSTER_NAME} + namespace: ${NAMESPACE} --- apiVersion: cluster.x-k8s.io/v1alpha3 kind: MachineDeployment @@ -155,7 +155,7 @@ spec: cloudName: ${OPENSTACK_CLOUD} cloudsSecret: name: ${CLUSTER_NAME}-cloud-config - namespace: ${CLUSTER_NAME} + namespace: ${NAMESPACE} flavor: ${OPENSTACK_NODE_MACHINE_FLAVOR} image: ${OPENSTACK_IMAGE_NAME} ---