Skip to content

Commit 022955e

Browse files
authored
Merge branch 'main' into dependabot/github_actions/dot-github/workflows/github/codeql-action-3.29.2
2 parents 7a7fd8e + c0f4af7 commit 022955e

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

pkg/fixtures/deployments/helm/charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Default values for testapp.
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
4-
replicaCount: 1
4+
replicaCount: 2
55

66
namespace: default
77

pkg/fixtures/deployments/kustomize/base/deployment-override-workload-identity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
kubernetes.azure.com/generator: draft
88
namespace: default
99
spec:
10-
replicas: 1
10+
replicas: 2
1111
selector:
1212
matchLabels:
1313
app.kubernetes.io/name: testapp

pkg/fixtures/deployments/kustomize/base/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
kubernetes.azure.com/generator: draft
88
namespace: default
99
spec:
10-
replicas: 1
10+
replicas: 2
1111
selector:
1212
matchLabels:
1313
app.kubernetes.io/name: testapp

pkg/fixtures/deployments/manifest/manifests/deployment-override-workload-identity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
kubernetes.azure.com/generator: draft
88
namespace: default
99
spec:
10-
replicas: 1
10+
replicas: 2
1111
selector:
1212
matchLabels:
1313
app.kubernetes.io/name: testapp

pkg/fixtures/deployments/manifest/manifests/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
kubernetes.azure.com/generator: draft
88
namespace: default
99
spec:
10-
replicas: 1
10+
replicas: 2
1111
selector:
1212
matchLabels:
1313
app.kubernetes.io/name: testapp

template/deployments/helm/charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Default values for {{ .Config.GetVariableValue "APPNAME"}}.
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
4-
replicaCount: 1
4+
replicaCount: 2
55

66
namespace: {{ .Config.GetVariableValue "NAMESPACE" }}
77

template/deployments/kustomize/base/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
kubernetes.azure.com/generator: {{ .Config.GetVariableValue "GENERATORLABEL" }}
88
namespace: {{ .Config.GetVariableValue "NAMESPACE" }}
99
spec:
10-
replicas: 1
10+
replicas: 2
1111
selector:
1212
matchLabels:
1313
app.kubernetes.io/name: {{ .Config.GetVariableValue "APPNAME" }}

template/deployments/manifests/manifests/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
kubernetes.azure.com/generator: {{ .Config.GetVariableValue "GENERATORLABEL" }}
88
namespace: {{ .Config.GetVariableValue "NAMESPACE" }}
99
spec:
10-
replicas: 1
10+
replicas: 2
1111
selector:
1212
matchLabels:
1313
app.kubernetes.io/name: {{ .Config.GetVariableValue "APPNAME" }}

0 commit comments

Comments
 (0)