Commit 1f42eedf authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 9.2.0 [skip ci]

parent ff50973e
Loading
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
# [9.2.0](https://gitlab.com/to-be-continuous/helm/compare/9.1.0...9.2.0) (2025-10-10)


### Features

* add AWS deployment variant for EKS ([3217fda](https://gitlab.com/to-be-continuous/helm/commit/3217fdab858a52a7e502913650c89ad30c09b77f))

# [9.1.0](https://gitlab.com/to-be-continuous/helm/compare/9.0.2...9.1.0) (2025-10-01)


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

variables:
@@ -540,9 +540,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.2.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-vault@9.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-vault@9.2.0
    inputs:
      # audience claim for JWT
      vault-oidc-aud: "https://vault.acme.host"
@@ -598,12 +598,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.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.2.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.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-gcp@9.2.0
    inputs:
      # default WIF provider
      gcp-oidc-provider: "projects/{GCP_PROJECT_NUMBER}/locations/global/workloadIdentityPools/{YOUR_WIF_POOL_NAME}/providers/gitlab-diod"
@@ -646,14 +646,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.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.2.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.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.2.0
    inputs:
      # default AWS configuration
      aws-region: us-east-1
@@ -676,12 +676,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.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm@9.2.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.1.0
  - component: $CI_SERVER_FQDN/to-be-continuous/helm/gitlab-ci-helm-eks@9.2.0
    inputs:
      aws-region: us-east-1
      aws-oidc-role-arn: "arn:aws:iam::123456789012:role/gitlab-ci-role"
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ variables:
.helm-deploy:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: [ "--service", "helm", "9.1.0" ]
      command: ["--service", "helm", "9.2.0"]
    - name: "$TBC_AWS_PROVIDER_IMAGE"
      alias: "aws-auth-provider"
  variables:
+1 −1
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ variables:
.helm-publish:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "helm", "9.1.0"]
      command: ["--service", "helm", "9.2.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.1.0"]
      command: ["--service", "helm", "9.2.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
Loading