Skip to content

Commit b3239a3

Browse files
committed
modifying templates
1 parent fadcf6f commit b3239a3

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

pkg/fixtures/workflows/github/kustomize/.github/workflows/azure-kubernetes-service-kustomize.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,5 +176,5 @@ jobs:
176176
private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER == 'true' }}
177177
namespace: ${{ env.NAMESPACE }}
178178
resource-type: ${{ env.CLUSTER_RESOURCE_TYPE }}
179-
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE }}!='Microsoft.ContainerService/fleets'
179+
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets' }}
180180

pkg/fixtures/workflows/github/manifests/.github/workflows/azure-kubernetes-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,4 @@ jobs:
161161
private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER == 'true' }}
162162
namespace: ${{ env.NAMESPACE }}
163163
resource-type: ${{ env.CLUSTER_RESOURCE_TYPE }}
164-
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE }}!='Microsoft.ContainerService/fleets'
164+
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets' }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,5 +176,5 @@ jobs:
176176
private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER == 'true' }}
177177
namespace: ${{ env.NAMESPACE }}
178178
resource-type: ${{ env.CLUSTER_RESOURCE_TYPE }}
179-
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE }}!='Microsoft.ContainerService/fleets'
179+
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets' }}
180180
`}}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@ jobs:
162162
private-cluster: ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER == 'true' }}
163163
namespace: ${{ env.NAMESPACE }}
164164
resource-type: ${{ env.CLUSTER_RESOURCE_TYPE }}
165-
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE }}!='Microsoft.ContainerService/fleets'
165+
annotate-namespace: ${{ env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets' }}
166166
`}}

0 commit comments

Comments
 (0)