Skip to content

Commit d320ac3

Browse files
committed
chore: remove unnecessary includeSelectors
1 parent c0b26cc commit d320ac3

File tree

5 files changed

+8
-16
lines changed

5 files changed

+8
-16
lines changed

examples/breakfast.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ mkdir -p $DEMO_HOME/breakfast/overlays/alice
7070
7171
cat <<EOF >$DEMO_HOME/breakfast/overlays/alice/kustomization.yaml
7272
labels:
73-
- includeSelectors: true
74-
pairs:
73+
- pairs:
7574
who: alice
7675
resources:
7776
- ../../base
@@ -95,8 +94,7 @@ mkdir -p $DEMO_HOME/breakfast/overlays/bob
9594
9695
cat <<EOF >$DEMO_HOME/breakfast/overlays/bob/kustomization.yaml
9796
labels:
98-
- includeSelectors: true
99-
pairs:
97+
- pairs:
10098
who: bob
10199
resources:
102100
- ../../base

examples/configGeneration.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ curl -s -o "$BASE/#1.yaml" "https://raw.githubusercontent.com\
4242

4343
cat <<'EOF' >$BASE/kustomization.yaml
4444
labels:
45-
- includeSelectors: true
46-
pairs:
45+
- pairs:
4746
app: hello
4847
resources:
4948
- deployment.yaml
@@ -68,8 +67,7 @@ cat <<'EOF' >$OVERLAYS/staging/kustomization.yaml
6867
namePrefix: staging-
6968
nameSuffix: -v1
7069
labels:
71-
- includeSelectors: true
72-
pairs:
70+
- pairs:
7371
variant: staging
7472
org: acmeCorporation
7573
commonAnnotations:

examples/configureBuiltinPlugin.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ to be read and transformed:
101101
cat <<'EOF' >$DEMO_HOME/kustomization.yaml
102102
namePrefix: hello-
103103
labels:
104-
- includeSelectors: true
105-
pairs:
104+
- pairs:
106105
app: hello
107106
commonAnnotations:
108107
area: "51"

examples/helloWorld/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,7 @@ defining a new name prefix, and some different labels.
144144
cat <<'EOF' >$OVERLAYS/staging/kustomization.yaml
145145
namePrefix: staging-
146146
labels:
147-
- includeSelectors: true
148-
pairs:
147+
- pairs:
149148
variant: staging
150149
org: acmeCorporation
151150
commonAnnotations:
@@ -187,8 +186,7 @@ with a different name prefix and labels.
187186
cat <<EOF >$OVERLAYS/production/kustomization.yaml
188187
namePrefix: production-
189188
labels:
190-
- includeSelectors: true
191-
pairs:
189+
- pairs:
192190
variant: production
193191
org: acmeCorporation
194192
commonAnnotations:

examples/springboot/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ add a label, but one can always edit
184184
```
185185
cat <<EOF >>$DEMO_HOME/kustomization.yaml
186186
labels:
187-
- includeSelectors: true
188-
pairs:
187+
- pairs:
189188
env: prod
190189
EOF
191190
```

0 commit comments

Comments
 (0)