@@ -129,21 +129,6 @@ resource and continues with creating multiple XRs to observe different upgrade p
129
129
assign different CompositionRevisions to the created composite resources each time the composition is updated.
130
130
131
131
# ## 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
- ` ` `
147
132
148
133
# ### Deploy Composition and XRD Examples
149
134
Apply the example Composition.
@@ -236,6 +221,7 @@ Create an XR without a `compositionUpdatePolicy` defined. The update policy is `
236
221
apiVersion: aws.example.upbound.io/v1alpha1
237
222
kind: MyVPC
238
223
metadata:
224
+ namespace: default
239
225
name: vpc-auto
240
226
spec:
241
227
id: vpc-auto
@@ -251,6 +237,7 @@ Create a Composite Resource with `compositionUpdatePolicy: Manual` and `composit
251
237
apiVersion: aws.example.upbound.io/v1alpha1
252
238
kind: MyVPC
253
239
metadata:
240
+ namespace: default
254
241
name: vpc-man
255
242
spec:
256
243
id: vpc-man
@@ -271,6 +258,7 @@ Create an XR with a `compositionRevisionSelector` of `channel: dev`:
271
258
apiVersion: aws.example.upbound.io/v1alpha1
272
259
kind: MyVPC
273
260
metadata:
261
+ namespace: default
274
262
name: vpc-dev
275
263
spec:
276
264
id: vpc-dev
@@ -289,6 +277,7 @@ Create an XR with a `compositionRevisionSelector` of `channel: staging`:
289
277
apiVersion: aws.example.upbound.io/v1alpha1
290
278
kind: MyVPC
291
279
metadata:
280
+ namespace: default
292
281
name: vpc-staging
293
282
spec:
294
283
id: vpc-staging
0 commit comments