Commit 67b31b53 authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 9.3.1 [skip ci]

parent 3132243e
Loading
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
## [9.3.1](https://gitlab.com/to-be-continuous/helm/compare/9.3.0...9.3.1) (2026-02-17)


### Bug Fixes

* helm diff broken with helm 4 ([ba4c912](https://gitlab.com/to-be-continuous/helm/commit/ba4c912e4466df47fb81944a4435f76f22e829fc))

# [9.3.0](https://gitlab.com/to-be-continuous/helm/compare/9.2.3...9.3.0) (2026-02-12)


+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.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.1
    # 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.0'
    ref: '9.3.1'
    file: '/templates/gitlab-ci-helm.yml'

variables:
@@ -553,9 +553,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.1
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-vault@9.3.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-vault@9.3.1
    inputs:
      # audience claim for JWT
      vault-oidc-aud: "https://vault.acme.host"
@@ -611,12 +611,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.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.1
    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.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-gcp@9.3.1
    inputs:
      # default WIF provider
      gcp-oidc-provider: "projects/{GCP_PROJECT_NUMBER}/locations/global/workloadIdentityPools/{YOUR_WIF_POOL_NAME}/providers/gitlab-diod"
@@ -659,14 +659,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.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.1
    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.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.3.1
    inputs:
      # default AWS configuration
      aws-region: us-east-1
@@ -689,12 +689,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.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.3.1
    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.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.3.1
    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.0"]
      command: ["--service", "helm", "9.3.1"]
    - 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.0"]
      command: ["--service", "helm", "9.3.1"]
    - name: "$TBC_AWS_PROVIDER_IMAGE"
      alias: "aws-auth-provider"
  variables:
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ variables:
.helm-publish:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "helm", "9.3.0"]
      command: ["--service", "helm", "9.3.1"]
    - 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.0"]
      command: ["--service", "helm", "9.3.1"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
Loading