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

Log kubefed operations at log level 4 in our test environments. #46063

Merged
merged 1 commit into from
May 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion federation/cluster/federation-down.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ function unjoin_clusters() {
"${context}" \
--federation-system-namespace=${FEDERATION_NAMESPACE} \
--context="${FEDERATION_KUBE_CONTEXT}" \
--host-cluster-context="${HOST_CLUSTER_CONTEXT}"
--host-cluster-context="${HOST_CLUSTER_CONTEXT}" \
--v=4
done
}

Expand Down
6 changes: 4 additions & 2 deletions federation/cluster/federation-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ function init() {
--apiserver-enable-basic-auth=true \
--apiserver-enable-token-auth=true \
--apiserver-arg-overrides="--v=4" \
--controllermanager-arg-overrides="--v=4"
--controllermanager-arg-overrides="--v=4" \
--v=4
}

# join_clusters joins the clusters in the local kubeconfig to federation. The clusters
Expand All @@ -107,7 +108,8 @@ function join_clusters() {
"${context}" \
--federation-system-namespace=${FEDERATION_NAMESPACE} \
--host-cluster-context="${HOST_CLUSTER_CONTEXT}" \
--context="${FEDERATION_KUBE_CONTEXT}"
--context="${FEDERATION_KUBE_CONTEXT}" \
--v=4
done
}

Expand Down