Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • to-be-continuous/helm
  • sthiriet/helm
  • bertrand.fourtanier/helm
  • gbrd/helm
  • kiranpatel11/helm
  • svalabs/helm
  • timothy.stone/helm
  • rmoreas/helm
  • bfourtanier/helm
  • rahendatri/helm
  • sjdrc/helm
  • dt-contribution-tbc/helm
  • zbozzo/helm
  • cedric3.olivier/helm
  • miha-prehcm/helm
  • lmarie23/helm
  • vincbon/helm
  • arnicel/helm
  • another15y/tbc/helm
  • hutcho66/tbc-helm
20 results
Show changes
Commits on Source (3)
## [4.1.3](https://gitlab.com/to-be-continuous/helm/compare/4.1.2...4.1.3) (2023-01-27)
### Bug Fixes
* "Add registry name in all Docker images" ([bf44e5e](https://gitlab.com/to-be-continuous/helm/commit/bf44e5e2b54fd1a4ec4128686ab1bf543dde335b))
## [4.1.2](https://gitlab.com/to-be-continuous/helm/compare/4.1.1...4.1.2) (2023-01-23)
......
......@@ -10,7 +10,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
- project: 'to-be-continuous/helm'
ref: '4.1.2'
ref: '4.1.3'
file: '/templates/gitlab-ci-helm.yml'
```
......@@ -206,7 +206,7 @@ The Helm template uses some global configuration used throughout all jobs.
| Name | description | default value |
| --------------------- | -------------------------------------- | ----------------- |
| `HELM_CLI_IMAGE` | The Docker image used to run Helm <br/>:warning: **set the version required by your Kubernetes server** | `alpine/helm:latest` |
| `HELM_CLI_IMAGE` | The Docker image used to run Helm <br/>:warning: **set the version required by your Kubernetes server** | `registry.hub.docker.com/alpine/helm:latest` |
| `HELM_CHART_DIR` | The folder where the Helm chart is located | `.` _(root project dir)_ |
| `HELM_SCRIPTS_DIR` | The folder where hook scripts are located | `.` _(root project dir)_ |
| `HELM_COMMON_VALUES` | Common values file (used for all environments, overridden by specific per-env values files) | undefined (none) |
......@@ -306,7 +306,7 @@ These jobs perform a [Yaml Lint](https://github.com/adrienverge/yamllint) of you
| Name | description | default value |
| ------------------------ | ------------------------------------- | ----------------- |
| `HELM_YAMLLINT_IMAGE` | The Docker image used to run YamlLint test | `cytopia/yamllint` |
| `HELM_YAMLLINT_IMAGE` | The Docker image used to run YamlLint test | `registry.hub.docker.com/cytopia/yamllint` |
| `HELM_YAMLLINT_DISABLED` | Set to `true` to disable Yaml lint | _none_ (enabled) |
| `HELM_YAMLLINT_CONFIG` | Config used with the yamllint tool | `{extends: relaxed, rules: {line-length: {max: 160}}}` |
| `HELM_YAMLLINT_ARGS` | Arguments used by the lint job | `-f colored --strict` |
......@@ -471,11 +471,11 @@ With:
include:
# main template
- project: 'to-be-continuous/helm'
ref: '4.1.2'
ref: '4.1.3'
file: '/templates/gitlab-ci-helm.yml'
# Vault variant
- project: 'to-be-continuous/helm'
ref: '4.1.2'
ref: '4.1.3'
file: '/templates/gitlab-ci-helm-vault.yml'
variables:
......
......@@ -7,7 +7,7 @@
{
"name": "HELM_CLI_IMAGE",
"description": "The Docker image used to run Helm - **set the version required by your Kubernetes server**",
"default": "alpine/helm:latest"
"default": "registry.hub.docker.com/alpine/helm:latest"
},
{
"name": "HELM_CHART_DIR",
......@@ -122,7 +122,7 @@
{
"name": "HELM_YAMLLINT_IMAGE",
"description": "The Docker image used to run YamlLint test",
"default": "cytopia/yamllint"
"default": "registry.hub.docker.com/cytopia/yamllint"
},
{
"name": "HELM_YAMLLINT_CONFIG",
......
......@@ -11,6 +11,6 @@ variables:
.helm-base:
services:
- name: "$TBC_TRACKING_IMAGE"
command: ["--service", "helm", "4.1.2" ]
command: ["--service", "helm", "4.1.3" ]
- name: "$TBC_VAULT_IMAGE"
alias: "vault-secrets-provider"
......@@ -45,8 +45,8 @@ variables:
TBC_TRACKING_IMAGE: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
# Docker Image with Helm CLI tool (can be overridden)
HELM_CLI_IMAGE: "alpine/helm"
HELM_YAMLLINT_IMAGE: "cytopia/yamllint"
HELM_CLI_IMAGE: "registry.hub.docker.com/alpine/helm"
HELM_YAMLLINT_IMAGE: "registry.hub.docker.com/cytopia/yamllint"
# HELM_LINT_DISABLED: "true"
# HELM_YAMLLINT_DISABLED: "true"
HELM_YAMLLINT_CONFIG: "{extends: relaxed, rules: {line-length: {max: 160}}}"
......@@ -709,7 +709,7 @@ stages:
entrypoint: [""]
services:
- name: "$TBC_TRACKING_IMAGE"
command: ["--service", "helm", "4.1.2" ]
command: ["--service", "helm", "4.1.3" ]
variables:
HELM_CACHE_HOME: $CI_PROJECT_DIR/.cache/helm
HELM_CONFIG_HOME: $CI_PROJECT_DIR/.config/helm
......