Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: env vars with default values in values.yaml #86

Merged
merged 1 commit into from
Mar 9, 2023

Conversation

vbehar
Copy link
Contributor

@vbehar vbehar commented Mar 9, 2023

we were generating values.yaml with

controllerManager:
  manager:
    env:
      key: value

but the deployment manifest had:

env:
  - name: key
    value: value: {{ .Values.controllerManager.manager.key }}

(it was missing the "env" level...)

so is now fixed by this change

we were generating values.yaml with

```
controllerManager:
  manager:
    env:
      key: value
```

but the deployment manifest had:

```
env:
  - name: key
    value: value: {{ .Values.controllerManager.manager.key }}
```

(it was missing the "env" level...)

so is now fixed by this change
@arttor arttor self-requested a review March 9, 2023 21:34
@arttor arttor merged commit 42f5649 into arttor:main Mar 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants