Last active
November 6, 2020 11:52
-
-
Save mikejk8s/43385862d0b5f0b153575db67f800a9f to your computer and use it in GitHub Desktop.
Remove fluentd GKE
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
kind: DaemonSet | |
apiVersion: extensions/v1beta1 | |
metadata: | |
name: startup-script | |
labels: | |
app: startup-script | |
spec: | |
template: | |
metadata: | |
labels: | |
app: startup-script | |
spec: | |
hostPID: true | |
containers: | |
- name: startup-script | |
image: gcr.io/google-containers/startup-script:v1 | |
imagePullPolicy: Always | |
securityContext: | |
privileged: true | |
env: | |
- name: STARTUP_SCRIPT | |
value: | | |
#! /bin/bash | |
set -o errexit | |
set -o pipefail | |
set -o nounset | |
rm /home/kubernetes/kube-manifests/kubernetes/gci-trusty/fluend-gcp/fluentd-gcp-ds.yaml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
does this still work?