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

Facing problems with non expected secrets #1

Merged
merged 1 commit into from
May 18, 2023
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ to_update=0
meshNetworks="networks:"

# foreach remote cluster
for remote_secret in $(kubectl get secrets -n istio-system -o=name | grep remote-secret); do
for remote_secret in $(kubectl get secrets -n istio-system -o=name --field-selector type=Opaque | grep remote-secret); do
echo "Getting cluster name for remote cluster from $remote_secret"
remote_cluster_name=$(kubectl get "$remote_secret" -n istio-system -o jsonpath='{.metadata.annotations.networking\.istio\.io/cluster}')
echo "Got cluster name: $remote_cluster_name"
Expand Down Expand Up @@ -40,4 +40,4 @@ if [[ $to_update == 1 ]]; then
kubectl patch configmap istio -n istio-system --type merge -p "{\"data\":{\"meshNetworks\":\"$meshNetworks\"}}"
echo "Configmap after patching"
kubectl get configmap -n istio-system istio -o yaml
fi
fi