File tree 9 files changed +105
-20
lines changed
simple-deployment-rgd/skip-step3
9 files changed +105
-20
lines changed Original file line number Diff line number Diff line change 38
38
metadata :
39
39
labels :
40
40
app : ${schema.metadata.name}
41
+ secret-version : ${secret.metadata.resourceVersion}
41
42
spec :
42
43
containers :
43
44
- name : main
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ apiVersion: apps/v1
2
2
kind : Deployment
3
3
metadata :
4
4
name : test-instance
5
+ generation : 1
5
6
spec :
6
7
replicas : 2
7
8
selector :
15
16
containers :
16
17
- image : nginx:1.25
17
18
name : main
19
+ env :
20
+ - name : TOKEN_ID
21
+ valueFrom :
22
+ secretKeyRef :
23
+ key : token-id
24
+ name : test-instance-secret
25
+ - name : TOKEN_SECRET
26
+ valueFrom :
27
+ secretKeyRef :
28
+ key : token-secret
29
+ name : test-instance-secret
Original file line number Diff line number Diff line change @@ -20,4 +20,4 @@ status:
20
20
reason : ReconciliationSucceeded
21
21
status : " True"
22
22
type : InstanceSynced
23
- state : ACTIVE
23
+ state : ACTIVE
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ metadata:
8
8
labels :
9
9
kro.run/controller-pod-id : kro-pod
10
10
kro.run/instance-name : test-instance
11
- kro.run/instance-namespace : default
12
11
kro.run/owned : " true"
13
12
name : test-instance-secret
14
13
type : Opaque
Original file line number Diff line number Diff line change @@ -2,33 +2,28 @@ apiVersion: apps/v1
2
2
kind : Deployment
3
3
metadata :
4
4
name : test-instance
5
+ generation : 2
5
6
spec :
6
- progressDeadlineSeconds : 600
7
- replicas : 3
8
- revisionHistoryLimit : 10
7
+ replicas : 2
9
8
selector :
10
9
matchLabels :
11
10
app : test-instance
12
- strategy :
13
- rollingUpdate :
14
- maxSurge : 25%
15
- maxUnavailable : 25%
16
- type : RollingUpdate
17
11
template :
18
12
metadata :
19
- creationTimestamp : null
20
13
labels :
21
14
app : test-instance
22
15
spec :
23
16
containers :
24
17
- image : nginx:1.25
25
- imagePullPolicy : IfNotPresent
26
18
name : main
27
- resources : {}
28
- terminationMessagePath : /dev/termination-log
29
- terminationMessagePolicy : File
30
- dnsPolicy : ClusterFirst
31
- restartPolicy : Always
32
- schedulerName : default-scheduler
33
- securityContext : {}
34
- terminationGracePeriodSeconds : 30
19
+ env :
20
+ - name : TOKEN_ID
21
+ valueFrom :
22
+ secretKeyRef :
23
+ key : token-id
24
+ name : test-instance-secret
25
+ - name : TOKEN_SECRET
26
+ valueFrom :
27
+ secretKeyRef :
28
+ key : token-secret
29
+ name : test-instance-secret
Original file line number Diff line number Diff line change
1
+ apiVersion : kro.run/v1alpha1
2
+ kind : ResourceGraphDefinition
3
+ metadata :
4
+ name : simple-deployment-rgd
5
+ spec :
6
+ schema :
7
+ apiVersion : v1alpha1
8
+ kind : SimpleDeployment
9
+ spec :
10
+ replicas : integer | 1
11
+ image : string | "nginx:latest"
12
+ resources :
13
+ - id : deployment
14
+ template :
15
+ apiVersion : apps/v1
16
+ kind : Deployment
17
+ metadata :
18
+ name : ${schema.metadata.name}
19
+ spec :
20
+ replicas : ${schema.spec.replicas}
21
+ selector :
22
+ matchLabels :
23
+ app : ${schema.metadata.name}
24
+ template :
25
+ metadata :
26
+ labels :
27
+ app : ${schema.metadata.name}
28
+ spec :
29
+ containers :
30
+ - name : main
31
+ image : ${schema.spec.image}
32
+ env : []
Original file line number Diff line number Diff line change
1
+ apiVersion : kro.run/v1alpha1
2
+ kind : ResourceGraphDefinition
3
+ metadata :
4
+ name : simple-deployment-rgd
5
+ finalizers :
6
+ - kro.run/finalizer
7
+ generation : 2
8
+ status :
9
+ conditions :
10
+ - message : micro controller is ready
11
+ reason : " "
12
+ status : " True"
13
+ type : ReconcilerReady
14
+ - message : Directed Acyclic Graph is synced
15
+ reason : " "
16
+ status : " True"
17
+ type : GraphVerified
18
+ - message : Custom Resource Definition is synced
19
+ reason : " "
20
+ status : " True"
21
+ type : CustomResourceDefinitionSynced
22
+ state : Active
23
+ topologicalOrder :
24
+ - deployment
Original file line number Diff line number Diff line change
1
+ apiVersion : kro.run/v1alpha1
2
+ kind : SimpleDeployment
3
+ metadata :
4
+ finalizers :
5
+ - kro.run/finalizer
6
+ generation : 2
7
+ labels :
8
+ kro.run/controller-pod-id : kro-pod
9
+ kro.run/owned : " true"
10
+ name : test-instance
11
+ spec :
12
+ image : nginx:1.25
13
+ replicas : 3
14
+ status :
15
+ conditions :
16
+ - message : Instance reconciled successfully
17
+ observedGeneration : 2
18
+ reason : ReconciliationSucceeded
19
+ status : " True"
20
+ type : InstanceSynced
21
+ state : ACTIVE
Original file line number Diff line number Diff line change
1
+ Update RGD to set the deployment spec to have an empty env array
You can’t perform that action at this time.
0 commit comments