Skip to content

Commit 74727bd

Browse files
authored
Merge pull request #3 from ctrlaltdilj/e2e-support-config-yaml
fixing e2e tests
2 parents bb55cee + 74d2557 commit 74727bd

File tree

4 files changed

+3
-15
lines changed

4 files changed

+3
-15
lines changed

.github/workflows/e2e.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ on:
3030
append-java-version:
3131
type: boolean
3232
default: false
33-
helm-values-yaml-path:
34-
required: false
35-
type: string
36-
default: "helm/flink-kubernetes-operator/values.yaml"
3733

3834
jobs:
3935
e2e_test:

e2e-tests/data/flink-conf-values.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

helm/flink-kubernetes-operator/templates/flink-operator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,8 @@ data:
280280
{{- if .Values.defaultConfiguration.append }}
281281
{{- $.Files.Get "conf/flink-conf.yaml" | nindent 4 -}}
282282
{{- end }}
283-
{{- if index (.Values.defaultConfiguration) "flink-conf.yaml" }}
284-
{{- index (.Values.defaultConfiguration) "flink-conf.yaml" | nindent 4 -}}
283+
{{- if index (.Values.defaultConfiguration) "config.yaml" }}
284+
{{- index (.Values.defaultConfiguration) "config.yaml" | nindent 4 -}}
285285
{{- end }}
286286
{{- if .Values.watchNamespaces }}
287287
kubernetes.operator.watched.namespaces: {{ join "," .Values.watchNamespaces }}

helm/flink-kubernetes-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# watchNamespaces: ["flink"]
2424

2525
image:
26-
repository: localhost:5000/flink-kubernetes-operator
26+
repository: flink-kubernetes-operator
2727
pullPolicy: IfNotPresent
2828
tag: latest
2929
# If image digest is set then it takes precedence and the image tag will be ignored

0 commit comments

Comments
 (0)