80 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
35
views
How to validate a helmfile syntax without evaluating environment variables?
Let's say I have a helmfile that looks somewhat like this
# helmfile.yaml
environments:
default:
values:
- values.yaml
releases:
- name: my-api
namespace: {{ requiredEnv "...
0
votes
0
answers
185
views
OCIS WebDAV Large File Upload Requests Fails with rclone – Connection Closed by Remote Host
I have deployed ownCloud Infinite Scale (OCIS) (which has an s3 storage as a backend to store user files )in a Kubernetes cluster using Helm. The service is up and running, and I can successfully ...
0
votes
0
answers
278
views
Helmfile Secrets Not Created in Namespace During Deployment
I'm using Helmfile to deploy my own Helm chart along with PostgreSQL, but I'm running into an issue where secrets are not being created in the namespace at all. This causes PostgreSQL and Redis to ...
0
votes
0
answers
226
views
Helmfile no values during tpl function
I am trying to render '{{ tpl .Values.Kuber.Namespace . }}' and got error:
in ./helmfile.yaml: failed to read .helmfile\environments.yaml: failed to load environment values file "envs\local\ns\...
0
votes
0
answers
110
views
helmfile template converted to scientific
When using helm template, the rendered result is correct, but when using helmfile template, the namespace is incorrect and displayed in scientific notation. I have already used the quote function in ...
1
vote
0
answers
135
views
helmfile apply re-creates the deployment
Problem:
Running helmfile apply seems to re-create the deployment causing downtime, even though the update strategy is RollingUpdate.
While running helmfile apply I can observe that the deployment at ...
2
votes
1
answer
358
views
Helm installation command: connection reset by peer [closed]
When I run helm install for the first time for any package installation with ansible, it throws the below error (example for cert-manager). But it vanishes again after executing the second time. I ...
1
vote
1
answer
141
views
Unable to access hiveserver2 via beeline
I am trying to run hive locally in Kind via a part of a helm chart generated from Kompose of apache/hive.
My hiveserver2-deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
...
0
votes
1
answer
537
views
Helmfile - Files.Get a javascript file
I am using helmfile as oppose to helm, and tried to follow this example: Kubernetes - How to define ConfigMap built using a file in a yaml? but didn't seem to work (I guess its due to me using ...
1
vote
0
answers
508
views
Removing crd from the cluster when helmfile apply
I have a problem understanding helm diff and removing crds from kubernetes cluster when helm apply
I have a helmfile which contains 2 charts, the first chart contains crds and other templates and the ...
0
votes
0
answers
72
views
A tricky requirement for helmfile
When I only use helm, the server chart looks like this (assuming that when I put # in front of the 10021 line, the helm upgrade is removing the deployment associated with 10021)
root@master01:~/...
0
votes
1
answer
1k
views
How to have helm / helmfile install the most recent chart version from a repo?
I am testing helm packaging & helm package installations, and I have pushed several versions to my helm repository (Sonatype Nexus). These are the versions that I have pushed:
version 1.0.0 / ...
0
votes
0
answers
127
views
Is it possible to execute the yaml files in the templates directory sequentially for a helm chart
I have a custom query where I need to install istio and create a gateway resource when doing helm install but right now it fails because without istio CRDs first installed, we cannot create a istio ...
0
votes
1
answer
104
views
How to move Service into the helmfile?
I have the following helmfile.yaml:
---
repositories:
- name: bitnami
url: https://charts.bitnami.com/bitnami
releases:
- name: clickhouse
namespace: clickhouse
chart: bitnami/...
1
vote
1
answer
661
views
Helmchart deployment in a specific order
I want to deploy helm chart in a specific order,
I have helm file where i have added multiple helm chart, I want them to deploy in order the of sequence based order which i have defined.
below is my ...