1# Copyright 2021 The Kubernetes Authors. 2# SPDX-License-Identifier: Apache-2.0 3 4apiVersion: apps/v1 5kind: DaemonSet 6metadata: 7 name: hello 8spec: 9 selector: 10 matchLabels: 11 name: hello 12 template: 13 metadata: 14 labels: 15 name: hello 16 spec: 17 containers: 18 - name: hello 19 image: nginx 20 env: 21 - name: EXISTING 22 value: variable 23