Skip to content

Commit 910a98c

Browse files
committed
Add test step for testing #293. skip it for now till that PR is merged
1 parent 0047f82 commit 910a98c

File tree

4 files changed

+78
-0
lines changed

4 files changed

+78
-0
lines changed
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)