diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ba3e57f..253dbaae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -211,4 +211,4 @@ - Remaining uses of the `viper` library have been migrated to `gopkg.in/yaml.v3` for consistency. - Unused files in the `web` package have been removed. -- Minor reorganization across the `config` and `addons` packages to reduce the number of exported functions and types. +- Minor reorganization across the `config` and `addons` packages to reduce the number of exported functions and types. \ No newline at end of file diff --git a/template/workflows/kustomize/.github/workflows/azure-kubernetes-service-kustomize.yml b/template/workflows/kustomize/.github/workflows/azure-kubernetes-service-kustomize.yml index a1d498f8..1591825f 100644 --- a/template/workflows/kustomize/.github/workflows/azure-kubernetes-service-kustomize.yml +++ b/template/workflows/kustomize/.github/workflows/azure-kubernetes-service-kustomize.yml @@ -134,6 +134,6 @@ jobs: ${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }} resource-group: ${{ env.CLUSTER_RESOURCE_GROUP }} name: ${{ env.CLUSTER_NAME }} - private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER }} + private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER == 'true' }} namespace: ${{ env.NAMESPACE }} `}} diff --git a/template/workflows/manifests/.github/workflows/azure-kubernetes-service.yml b/template/workflows/manifests/.github/workflows/azure-kubernetes-service.yml index 92741a1a..b0990ed7 100644 --- a/template/workflows/manifests/.github/workflows/azure-kubernetes-service.yml +++ b/template/workflows/manifests/.github/workflows/azure-kubernetes-service.yml @@ -121,6 +121,6 @@ jobs: ${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }} resource-group: ${{ env.CLUSTER_RESOURCE_GROUP }} name: ${{ env.CLUSTER_NAME }} - private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER }} + private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER == 'true' }} namespace: ${{ env.NAMESPACE }} `}} \ No newline at end of file