-
Notifications
You must be signed in to change notification settings - Fork 38
Description
Expected Behavior
Service account name in deployment should match actual service account name.
Service account:
apiVersion: v1 kind: ServiceAccount metadata: name: example-kestra-operator namespace: example
Replicaset template:
apiVersion: apps/v1 kind: ReplicaSet metadata: name: example-kestra-operator-7b9ff767dc namespace: example spec: template: spec: serviceAccount: example-kestra-operator serviceAccountName: example-kestra-operator
Actual Behaviour
Service account:
apiVersion: v1 kind: ServiceAccount metadata: name: example-kestra-operator namespace: example
Replicaset template:
apiVersion: apps/v1 kind: ReplicaSet metadata: name: example-kestra-operator-7b9ff767dc namespace: example spec: template: spec: serviceAccount: kestra-operator serviceAccountName: kestra-operator
Steps To Reproduce
Env:
- k3s
- argocd
- helm
- create new helm "example":
- add kestra-io operator helm chart as dependency
- create values.yaml with content
kestra-operator: annotations: test: example-test - install example chart to k3s / kubernetes with argocd
- Check Replicaset
Environment Information
- Kestra Version:
- Helm Charts version: 1.0.0
- K3s version: v1.31.5+k3s1
- Argocd version: 2.12.10