Skip to content

Commit 5e7076f

Browse files
committed
Additional test scenarios:
- test step for testing #293. skip it for now till that PR is merged - test for verifying #299 - Using secrets with stringData - test for verifying #300 - using secret.metadata.resourceVersion in deployment
1 parent 7d686de commit 5e7076f

File tree

9 files changed

+105
-20
lines changed

9 files changed

+105
-20
lines changed

test/e2e/testdata/secrets-in-resources/step0/inputs/rgd.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ spec:
3838
metadata:
3939
labels:
4040
app: ${schema.metadata.name}
41+
secret-version: ${secret.metadata.resourceVersion}
4142
spec:
4243
containers:
4344
- name: main

test/e2e/testdata/secrets-in-resources/step1/outputs/deployment.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apiVersion: apps/v1
22
kind: Deployment
33
metadata:
44
name: test-instance
5+
generation: 1
56
spec:
67
replicas: 2
78
selector:
@@ -15,3 +16,14 @@ spec:
1516
containers:
1617
- image: nginx:1.25
1718
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

test/e2e/testdata/secrets-in-resources/step1/outputs/instance.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ status:
2020
reason: ReconciliationSucceeded
2121
status: "True"
2222
type: InstanceSynced
23-
state: ACTIVE
23+
state: ACTIVE

test/e2e/testdata/secrets-in-resources/step1/outputs/secret.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ metadata:
88
labels:
99
kro.run/controller-pod-id: kro-pod
1010
kro.run/instance-name: test-instance
11-
kro.run/instance-namespace: default
1211
kro.run/owned: "true"
1312
name: test-instance-secret
1413
type: Opaque

test/e2e/testdata/secrets-in-resources/step2/outputs/deployment.yaml

+13-18
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,28 @@ apiVersion: apps/v1
22
kind: Deployment
33
metadata:
44
name: test-instance
5+
generation: 2
56
spec:
6-
progressDeadlineSeconds: 600
7-
replicas: 3
8-
revisionHistoryLimit: 10
7+
replicas: 2
98
selector:
109
matchLabels:
1110
app: test-instance
12-
strategy:
13-
rollingUpdate:
14-
maxSurge: 25%
15-
maxUnavailable: 25%
16-
type: RollingUpdate
1711
template:
1812
metadata:
19-
creationTimestamp: null
2013
labels:
2114
app: test-instance
2215
spec:
2316
containers:
2417
- image: nginx:1.25
25-
imagePullPolicy: IfNotPresent
2618
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 numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update RGD to set the deployment spec to have an empty env array

0 commit comments

Comments
 (0)