🌐
GitLab
gitlab.com › gitlab.org › charts › gitlab runner › repository
values.yaml · main · GitLab.org / charts / GitLab Runner · GitLab
August 5, 2026 - The supplied TOML is passed through `tpl`, ## so Helm values can be interpolated as usual. ## ## configOverride must be a COMPLETE config.toml: it replaces the rendered ## config in its entirety, so the following chart values have NO effect and ## must be expressed directly in the TOML (or omitted): ## ## - concurrent, checkInterval, shutdown_timeout, logLevel, logFormat, ## sentryDsn, connectionMaxAge ## - metrics.enabled / metrics.port (set `listen_address = ":<port>"`) ## - sessionServer.* (write [session_server] directly; placeholder ## substitution is also skipped) ## - runners.config, runners.configPath
Discussions

How can I set a value in values.yaml file of a helm chart using gitlab-ci.yml pipeline?
I've never done that specifically, but I have used envsubst to set values in files. More on reddit.com
🌐 r/gitlab
4
0
August 22, 2024
Best Practices for Deploying Helm Charts in Production with ArgoCD and GitLab
Using branches to segregate environments is a very bad option. I cannot recommend enough this video https://youtu.be/CvMevMHExHk?si=eumCCpgnBixLMn1O More on reddit.com
🌐 r/kubernetes
39
43
September 30, 2024
How to install Helm Package with custom values other than the values.yaml with in the package
https://helm.sh/docs/chart_best_practices/values/#consider-how-users-will-use-your-values Either from the values.yaml in the chart, supplying a path to another values file with `-f` or using `--set` to directly set a value on the command line. More on reddit.com
🌐 r/kubernetes
5
0
March 19, 2022
Best practices for managing Helm charts in a medium/large company?
We use a service template, a single helm chart that abstract everything. In this way we can push update, security fixes, and strictly control what get deployed on our clusters. We have developer pass us just a value.yaml And we mingle that together in Spinnaker, but you can do the same with Jenkins or whatever you are using. More on reddit.com
🌐 r/kubernetes
31
36
February 10, 2022
🌐
GitHub
github.com › helm › charts › blob › master › stable › gitlab-ce › values.yaml
charts/stable/gitlab-ce/values.yaml at master · helm/charts
postgresDatabase: gitlab · · persistence: size: 10Gi · · ## Configuration values for the redis dependency. ## ref: https://github.com/kubernetes/charts/blob/master/stable/redis/README.md · ## redis: redisPassword: "gitlab" · resources: requests: memory: 1Gi ·
Author: helm
🌐
GitLab
docs.gitlab.com › charts › installation › command-line-options
GitLab Helm chart deployment options | GitLab Docs
For the source of the default values.yaml file, see the GitLab chart repository. These contents change over releases, but you can use Helm itself to retrieve these on a per-version basis:
🌐
GitLab
docs.gitlab.com › gitlab docs › install › installation methods › helm chart
GitLab Helm chart | GitLab Docs
This chart contains all the required components to get started and can scale to large deployments. For OpenShift-based installations, use GitLab Operator, otherwise you must update the security context constraints yourself. The GitLab Helm chart requires external PostgreSQL, Redis, and object storage.
🌐
Reddit
reddit.com › r/gitlab › how can i set a value in values.yaml file of a helm chart using gitlab-ci.yml pipeline?
r/gitlab on Reddit: How can I set a value in values.yaml file of a helm chart using gitlab-ci.yml pipeline?
August 22, 2024 - You can also use —set <key>=<value> when installing or upgrading with helm. Depends if this action is made during your CD or not. https://helm.sh/docs/chart_template_guide/values_files/
Find elsewhere
Author: mvisonneau
🌐
RTFM
rtfm.co.ua › home › virtualization › amazon web services › gitlab: helm chart of values, dependencies, and deployment in kubernetes with aws s3
GitLab: Helm chart of values, dependencies, and deployment in Kubernetes with AWS S3
February 4, 2023 - Accordingly, in the values of the ... look like this: global: hosts: domain: hostSuffix: # used in the ./charts/gitlab/charts/webservice, ./charts/gitlab/charts/toolbox/, ./charts/registry/, etc ......
🌐
GitLab
docs.gitlab.com › gitlab docs › install › installation methods › helm chart › configure › globals
Configure charts using globals | GitLab Docs
To reduce configuration duplication when installing our wrapper Helm chart, several configuration settings are available to be set in the global section of values.yaml. These global settings are used across several charts, while all other settings are scoped within their chart.
🌐
OneUptime
oneuptime.com › home › blog › helm chart ci/cd with gitlab ci
Helm Chart CI/CD with GitLab CI
January 17, 2026 - # charts/my-app/values-production.yaml replicaCount: 3 image: tag: "1.0.0" resources: limits: cpu: 2000m memory: 1Gi ingress: enabled: true hosts: - host: example.com paths: - path: / pathType: Prefix tls: - secretName: production-tls hosts: - example.com · Configure the kubeconfig variables in GitLab CI/CD settings. GitLab provides the registry variables automatically when the container registry is enabled: ... publish-to-gitlab: stage: publish extends: .helm-base script: - | # Use CI_REGISTRY_* variables (automatic) helm registry login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY} for chart in ${CHART_DIR}/*/; do helm package "$chart" helm push *.tgz oci://${CI_REGISTRY}/${CI_PROJECT_PATH}/charts rm *.tgz done
🌐
GitLab
gitlab.com › gitlab.org › charts › gitlab chart › repository
examples · master · GitLab.org / charts / GitLab Chart · GitLab
Let us say we would like to have ... if we do not need to configure smtp. Finally we save the file · run helm upgrade --install -f values-base.yaml gitlab ....