Skip to content

Commit 1fba07e

Browse files
author
Mauricio Ferrari
authored
Added k8s/deploy Inputs for Private Cluster Support (#342)
1 parent 66436ca commit 1fba07e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

template/workflows/helm/.github/workflows/azure-kubernetes-service-helm.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,5 +134,7 @@ jobs:
134134
manifests: ${{ steps.bake.outputs.manifestsBundle }}
135135
images: |
136136
${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }}
137-
namespace: ${{ env.NAMESPACE }}
137+
resource-group: ${{ env.CLUSTER_RESOURCE_GROUP }}
138+
name: ${{ env.CLUSTER_NAME }}
138139
private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER }}
140+
namespace: ${{ env.NAMESPACE }}

template/workflows/kustomize/.github/workflows/azure-kubernetes-service-kustomize.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,7 @@ jobs:
129129
manifests: ${{ steps.bake.outputs.manifestsBundle }}
130130
images: |
131131
${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }}
132-
namespace: ${{ env.NAMESPACE }}
132+
resource-group: ${{ env.CLUSTER_RESOURCE_GROUP }}
133+
name: ${{ env.CLUSTER_NAME }}
133134
private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER }}
135+
namespace: ${{ env.NAMESPACE }}

template/workflows/manifests/.github/workflows/azure-kubernetes-service.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ jobs:
116116
manifests: ${{ env.DEPLOYMENT_MANIFEST_PATH }}
117117
images: |
118118
${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }}
119-
namespace: ${{ env.NAMESPACE }}
119+
resource-group: ${{ env.CLUSTER_RESOURCE_GROUP }}
120+
name: ${{ env.CLUSTER_NAME }}
120121
private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER }}
122+
namespace: ${{ env.NAMESPACE }}
121123

0 commit comments

Comments
 (0)