Skip to content

Instantly share code, notes, and snippets.

@jamesholcomb
Last active September 12, 2019 21:13
Show Gist options
  • Select an option

  • Save jamesholcomb/94d83a71953a390b6f778149cec25e66 to your computer and use it in GitHub Desktop.

Select an option

Save jamesholcomb/94d83a71953a390b6f778149cec25e66 to your computer and use it in GitHub Desktop.
Disable fluentd-gcp on a Kubernetes node
# 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