Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump master to next version #15595

Merged
merged 22 commits into from
Sep 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix spire and multiple controlplane tests
Signed-off-by: Faseela K <faseela.k@est.tech>
kfaseela committed Sep 12, 2024
commit 39d4f57671224c0192d49afed58965ddba4b4d1e
1 change: 0 additions & 1 deletion content/en/docs/ops/integrations/spire/index.md
Original file line number Diff line number Diff line change
@@ -162,7 +162,6 @@ Below are the equivalent manual registrations based off the automatic registrati
meshConfig:
trustDomain: example.org
values:
global:
# This is used to customize the sidecar template.
# It adds both the label to indicate that SPIRE should manage the
# identity of this pod, as well as the CSI driver mounts.
1 change: 0 additions & 1 deletion content/en/docs/ops/integrations/spire/snips.sh
Original file line number Diff line number Diff line change
@@ -104,7 +104,6 @@ spec:
meshConfig:
trustDomain: example.org
values:
global:
# This is used to customize the sidecar template.
# It adds both the label to indicate that SPIRE should manage the
# identity of this pod, as well as the CSI driver mounts.
Original file line number Diff line number Diff line change
@@ -259,14 +259,14 @@ sleep-78ff5975c6-nxtth.app-ns-3 Kubernetes SYNCED SYNCED SYNCED
1. Clean up the first usergroup:

{{< text bash >}}
$ istioctl uninstall --revision usergroup-1
$ istioctl uninstall --revision usergroup-1 --set values.global.istioNamespace=usergroup-1
$ kubectl delete ns app-ns-1 usergroup-1
{{< /text >}}

1. Clean up the second usergroup:

{{< text bash >}}
$ istioctl uninstall --revision usergroup-2
$ istioctl uninstall --revision usergroup-2 --set values.global.istioNamespace=usergroup-2
$ kubectl delete ns app-ns-2 app-ns-3 usergroup-2
{{< /text >}}

Original file line number Diff line number Diff line change
@@ -239,11 +239,11 @@ x-envoy-upstream-service-time: 3
ENDSNIP

snip_cleanup_1() {
istioctl uninstall --revision usergroup-1
istioctl uninstall --revision usergroup-1 --set values.global.istioNamespace=usergroup-1
kubectl delete ns app-ns-1 usergroup-1
}

snip_cleanup_2() {
istioctl uninstall --revision usergroup-2
istioctl uninstall --revision usergroup-2 --set values.global.istioNamespace=usergroup-2
kubectl delete ns app-ns-2 app-ns-3 usergroup-2
}