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

Default simulator helm chart values conflict #104

Open
EliSauder opened this issue Sep 6, 2024 · 1 comment
Open

Default simulator helm chart values conflict #104

EliSauder opened this issue Sep 6, 2024 · 1 comment

Comments

@EliSauder
Copy link

The default values for simulator.enabled and simulator.exampleCertificate.enabled don't match. This can result in a state where you have disabled the simulator but still create the certificate.

enabled: false # Enable or disable the ADCS Simulator.

enabled: true # Enable or disable the example certificate.

Recommendation:
Add additional configuration to the example certificate to check both variables

{{- if .Values.simulator.exampleCertificate.enabled }}

Change to:

{{- if and .Values.simulator.enabled .Values.simulator.exampleCertificate.enabled }}
@djkormo
Copy link
Owner

djkormo commented Oct 16, 2024

Thats correct. It will be added on the next versions.

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

No branches or pull requests

2 participants