-
Notifications
You must be signed in to change notification settings - Fork 87
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
Issue with installation via FluxCD #278
Comments
I'm having the same issue when trying to build with Kustomize. The following doesn't work: # kustomization.yaml
helmCharts:
- name: hazelcast
version: "5.4.0"
repo: https://hazelcast-charts.s3.amazonaws.com
releaseName: hazelcast $> kustomize build --enable-helm .
Error: map[string]interface {}(nil): yaml: unmarshal errors:
line 85: mapping key "securityContext" already defined at line 35 If I set # kustomization.yaml
helmCharts:
- name: hazelcast
version: "5.4.0"
repo: https://hazelcast-charts.s3.amazonaws.com
releaseName: hazelcast
valuesInline:
securityContext:
enabled: false $> kustomize build --enable-helm .
apiVersion: v1
kind: ServiceAccount
metadata:
labels:
app.kubernetes.io/instance: hazelcast
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: hazelcast
... VersionsChart version: 5.4.0 |
This is still an issue! Now using chart version 5.4.2 kustomize version helm version Client Version: version.Info{Major:"1", Minor:"22", GitVersion:"v1.22.5", GitCommit:"5c99e2ac2ff9a3c549d9ca665e7bc05a3e18f07e", GitTreeState:"clean", BuildDate:"2021-12-16T08:38:33Z", GoVersion:"go1.16.12", Compiler:"gc", Platform:"linux/amd64"} |
Hi @KosShutenko, @martonsz I have changed the related part of the code that cause this error. Now, it should be fixed. |
I can install hazelcast via helm install command, but cannot via FluxCD.
When I am trying to install hazelcast via HelmRelease in FluxCD I am getting the following error:
I have the following HelmRelease:
If I set
securityContext.enabled: false
installation will be completed but mancenter cannot be running because of error with mounting/data
folder:Issue in
mancenter-statefulset.yaml
file. You have part with twosecurityContext
sections:P.S. I found another Issue with such problem where explained why id doesn't work in FluxCD - fluxcd/helm-controller#283 (comment)
The text was updated successfully, but these errors were encountered: