diff --git a/.github/workflows/build-push.yml b/.github/workflows/build-push.yml index 1b25f62..a55f7a3 100644 --- a/.github/workflows/build-push.yml +++ b/.github/workflows/build-push.yml @@ -177,7 +177,7 @@ jobs: "spec.template.spec.containers[0].image": "registry.nordix.org/eiffel/etos-iut:${{ needs.build_iut.outputs.iutVersion }}" }, "manifests/base/executionspace/deployment.yaml": { - "2.spec.template.spec.containers[0].image": "registry.nordix.org/eiffel/etos-executionspace:${{ needs.build_executionspace.outputs.executionSpaceVersion }}" + "spec.template.spec.containers[0].image": "registry.nordix.org/eiffel/etos-executionspace:${{ needs.build_executionspace.outputs.executionSpaceVersion }}" } } branch: main diff --git a/manifests/base/executionspace/kustomization.yaml b/manifests/base/executionspace/kustomization.yaml index 0db2655..9e7258c 100644 --- a/manifests/base/executionspace/kustomization.yaml +++ b/manifests/base/executionspace/kustomization.yaml @@ -5,4 +5,5 @@ resources: - rolebinding.yaml - service.yaml - deployment.yaml - - role.yaml \ No newline at end of file + - role.yaml + - vars.yaml \ No newline at end of file diff --git a/manifests/base/executionspace/vars.yaml b/manifests/base/executionspace/vars.yaml new file mode 100644 index 0000000..060d692 --- /dev/null +++ b/manifests/base/executionspace/vars.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: etos-executionspace +data: + PROVIDER_HOSTNAME: http://etos-executionspace \ No newline at end of file