File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ Flags:
339339| ` namespaces ` | List of namespaces to operate on. Empty means all namespaces | ` [] ` |
340340| ` interval ` | How often to check for config changes (seconds) | ` 45 ` |
341341| ` meta.key ` | The metadata key (optional) | ` "" ` |
342- | ` meta.values ` | Comma-separated key-values string (k1=v1,k2=v2,..) | Metadata to use for the key |
342+ | ` meta.values ` | Metadata to use for the key | ` {} `
343343| ` fluentdResources ` | Resource definitions for the fluentd container | ` {} ` |
344344| ` reloaderResources ` | Resource definitions for the reloader container | ` {} ` |
345345| ` tolerations ` | Pod tolerations | ` [] ` |
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ push-image: build-image
4040
4141
4242create-test-ns :
43- envsubst ' $$LOGGLY_TOKEN' < examples/manifests/kfo-test.yaml | kubectl apply -f -
43+ LOGGLY_TOKEN= $( LOGGLY_TOKEN ) envsubst ' $$LOGGLY_TOKEN' < examples/manifests/kfo-test.yaml | kubectl apply -f -
4444
4545delete-test-ns :
4646 kubectl delete -f examples/manifests/kfo-test.yaml
Original file line number Diff line number Diff line change 3434 command :
3535 - bash
3636 - -c
37- - while true; do echo `date -R` [INFO] "Random hello number $((var++)) to file"; sleep 2; [[ $(($var % 100)) == 0 ]] && :> /var/log/hello.log ;done > /var/log/hello.log
37+ - while true; do echo `date -R` [INFO] "Random hello number $((var++)) to file"; sleep 2; [[ $(($var % 100)) == 0 ]] && rm -fr /var/log/hello.log ;done > /var/log/hello.log
3838 volumeMounts :
3939 - mountPath : /var/log
4040 name : logs
6363 command :
6464 - bash
6565 - -c
66- - while true; do echo `date -R` [INFO] "Random welcome number $((var++)) to file"; sleep 2; [[ $(($var % 100)) == 0 ]] && :> /var/log/welcome.log ;done > /var/log/welcome.log
66+ - while true; do echo `date -R` [INFO] "Random welcome number $((var++)) to file"; sleep 2; [[ $(($var % 100)) == 0 ]] && rm -fr /var/log/welcome.log ;done > /var/log/welcome.log
6767 volumeMounts :
6868 - mountPath : /var/log
6969 name : logs
You can’t perform that action at this time.
0 commit comments