Last active
September 12, 2019 21:13
-
-
Save jamesholcomb/94d83a71953a390b6f778149cec25e66 to your computer and use it in GitHub Desktop.
Disable fluentd-gcp on a Kubernetes node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # disable stackdriver logging in the cluster | |
| gcloud beta container clusters update [CLUSTER_NAME] --logging-service none | |
| # delete the label on the specific node | |
| kubectl label nodes [NODE_NAME] beta.kubernetes.io/fluentd-ds-ready- | |
| # apply config | |
| kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/kubernetes-engine-customize-fluentd/master/kubernetes/fluentd-configmap.yaml | |
| # apply daemonset | |
| kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/kubernetes-engine-customize-fluentd/master/kubernetes/fluentd-daemonset.yaml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment