Commit 600f0a3f authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 6.0.0 [skip ci]

# [6.0.0](https://gitlab.com/to-be-continuous/openshift/compare/5.6.0...6.0.0) (2025-08-13)

* feat(vault)!: enable certificate verification ([1e826aac](https://gitlab.com/to-be-continuous/openshift/commit/1e826aac88612585bf4d2e6eb2119c10ecd286da))

### BREAKING CHANGES

* self-signed certificates must be declared in your GitLab DEFAULT_CA_CERTS or with VAULT_CA_CERTS variable
parent 1e826aac
Loading
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
# [6.0.0](https://gitlab.com/to-be-continuous/openshift/compare/5.6.0...6.0.0) (2025-08-13)


* feat(vault)!: enable certificate verification ([1e826aa](https://gitlab.com/to-be-continuous/openshift/commit/1e826aac88612585bf4d2e6eb2119c10ecd286da))


### BREAKING CHANGES

* self-signed certificates must be declared in your GitLab DEFAULT_CA_CERTS or with VAULT_CA_CERTS variable

# [5.6.0](https://gitlab.com/to-be-continuous/openshift/compare/5.5.0...5.6.0) (2025-08-12)


+5 −5
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Add the following to your `.gitlab-ci.yml`:
```yaml
include:
  # 1: include the component
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift@5.6.0
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift@6.0.0
    # 2: set/override component inputs
    inputs:
      # ⚠ this is only an example
@@ -32,7 +32,7 @@ Add the following to your `.gitlab-ci.yml`:
include:
  # 1: include the template
  - project: 'to-be-continuous/openshift'
    ref: '5.6.0'
    ref: '6.0.0'
    file: '/templates/gitlab-ci-openshift.yml'

variables:
@@ -545,9 +545,9 @@ With:
```yaml
include:
  # main template
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift@5.6.0
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift@6.0.0
  # Vault variant
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift-vault@5.6.0
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift-vault@6.0.0
    inputs:
      # audience claim for JWT
      vault-oidc-aud: "https://vault.acme.host"
@@ -573,7 +573,7 @@ variables:

```yaml
include:
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift@5.6.0
  - component: $CI_SERVER_FQDN/to-be-continuous/openshift/gitlab-ci-openshift@6.0.0
    inputs:
      url: "https://openshift-noprod.acme.host" # noprod cluster is default (review & staging)
      prod-url: "https://openshift-prod.acme.host/" # prod cluster for prod env only
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ variables:
.os-base:
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "openshift", "5.6.0"]
      command: ["--service", "openshift", "6.0.0"]
    - name: "$TBC_VAULT_IMAGE"
      alias: "vault-secrets-provider"
      variables:
+1 −1
Original line number Diff line number Diff line
@@ -834,7 +834,7 @@ stages:
  image: $OS_CLI_IMAGE
  services:
    - name: "$TBC_TRACKING_IMAGE"
      command: ["--service", "openshift", "5.6.0"]
      command: ["--service", "openshift", "6.0.0"]
  before_script:
    - !reference [.os-scripts]
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"