@@ -129,21 +129,6 @@ resource and continues with creating multiple XRs to observe different upgrade p
129129assign different CompositionRevisions to the created composite resources each time the composition is updated.
130130
131131# ## Preparation
132- # #### Install Crossplane
133- Install Crossplane v1.11.0 or later and wait until the Crossplane pods are running.
134- ` ` ` shell
135- kubectl create namespace crossplane-system
136- helm repo add crossplane-master https://charts.crossplane.io/master/
137- helm repo update
138- helm install crossplane --namespace crossplane-system crossplane-master/crossplane --devel --version 1.11.0-rc.0.108.g0521c32e
139- kubectl get pods -n crossplane-system
140- ` ` `
141- Expected Output :
142- ` ` ` shell
143- NAME READY STATUS RESTARTS AGE
144- crossplane-7f75ddcc46-f4d2z 1/1 Running 0 9s
145- crossplane-rbac-manager-78bd597746-sdv6w 1/1 Running 0 9s
146- ` ` `
147132
148133# ### Deploy Composition and XRD Examples
149134Apply the example Composition.
@@ -236,6 +221,7 @@ Create an XR without a `compositionUpdatePolicy` defined. The update policy is `
236221apiVersion: aws.example.upbound.io/v1alpha1
237222kind: MyVPC
238223metadata:
224+ namespace: default
239225 name: vpc-auto
240226spec:
241227 id: vpc-auto
@@ -251,6 +237,7 @@ Create a Composite Resource with `compositionUpdatePolicy: Manual` and `composit
251237apiVersion: aws.example.upbound.io/v1alpha1
252238kind: MyVPC
253239metadata:
240+ namespace: default
254241 name: vpc-man
255242spec:
256243 id: vpc-man
@@ -271,6 +258,7 @@ Create an XR with a `compositionRevisionSelector` of `channel: dev`:
271258apiVersion: aws.example.upbound.io/v1alpha1
272259kind: MyVPC
273260metadata:
261+ namespace: default
274262 name: vpc-dev
275263spec:
276264 id: vpc-dev
@@ -289,6 +277,7 @@ Create an XR with a `compositionRevisionSelector` of `channel: staging`:
289277apiVersion: aws.example.upbound.io/v1alpha1
290278kind: MyVPC
291279metadata:
280+ namespace: default
292281 name: vpc-staging
293282spec:
294283 id: vpc-staging
0 commit comments