Commit 3f32934e authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 9.4.0 [skip ci]

parent 39840ae7
Loading
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
# [9.4.0](https://gitlab.com/to-be-continuous/helm/compare/9.3.2...9.4.0) (2026-02-28)


### Features

* add parallel:matrix support ([35c6f2f](https://gitlab.com/to-be-continuous/helm/commit/35c6f2f6a4774e8878e12e7d35483c21ffddccf7))

## [9.3.2](https://gitlab.com/to-be-continuous/helm/compare/9.3.1...9.3.2) (2026-02-19)


+10 −10
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ Add the following to your `.gitlab-ci.yml`:
```yaml
include:
  # 1: include the component
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.4.0
    # 2: set/override component inputs
    inputs:
      # ⚠ this is only an example
@@ -33,7 +33,7 @@ Add the following to your `.gitlab-ci.yml`:
include:
  # 1: include the template
  - project: 'to-be-continuous/helm'
    ref: '9.3.2'
    ref: '9.4.0'
    file: '/templates/gitlab-ci-helm.yml'

variables:
@@ -601,9 +601,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.4.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-vault@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-vault@9.4.0
    inputs:
      # audience claim for JWT
      vault-oidc-aud: "https://vault.acme.host"
@@ -659,12 +659,12 @@ List of requirements before using this variant for deploying your charts:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.4.0
    inputs:
      # GCP Artifact Registry url
      publish-url: "oci://{GCP_REGION}-docker.pkg.dev/${GCP_PROJECT_ID}/charts"
  # GCP auth variant
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-gcp@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-gcp@9.4.0
    inputs:
      # default WIF provider
      gcp-oidc-provider: "projects/{GCP_PROJECT_NUMBER}/locations/global/workloadIdentityPools/{YOUR_WIF_POOL_NAME}/providers/gitlab-diod"
@@ -707,14 +707,14 @@ List of requirements before using this variant for deploying your charts to EKS:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.4.0
    inputs:
      base-app-name: my-app
      review-enabled: true
      staging-enabled: true
      prod-enabled: true
  # AWS auth variant
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.4.0
    inputs:
      # default AWS configuration
      aws-region: us-east-1
@@ -737,12 +737,12 @@ For private EKS clusters, you need to provide an EC2 instance ID for SSM port fo
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.4.0
    inputs:
      base-app-name: my-app
      prod-enabled: true
  # AWS auth variant
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.3.2
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.4.0
    inputs:
      aws-region: us-east-1
      aws-oidc-role-arn: "arn:aws:iam::123456789012:role/gitlab-ci-role"
+2 −2
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ variables:
.helm-diff:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "helm", "9.3.2"]
      command: ["--service", "helm", "9.4.0"]
    - name: "$TBC_AWS_PROVIDER_IMAGE"
      alias: "aws-auth-provider"
  variables:
@@ -68,7 +68,7 @@ variables:
.helm-deploy:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "helm", "9.3.2"]
      command: ["--service", "helm", "9.4.0"]
    - name: "$TBC_AWS_PROVIDER_IMAGE"
      alias: "aws-auth-provider"
  variables:
+1 −1
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ variables:
.helm-publish:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "helm", "9.3.2"]
      command: ["--service", "helm", "9.4.0"]
    - name: "$TBC_GCP_PROVIDER_IMAGE"
      alias: "gcp-auth-provider"
  variables:
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ variables:
.helm-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "helm", "9.3.2"]
      command: ["--service", "helm", "9.4.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
Loading