...
1# Copyright 2019 The Kubernetes Authors.
2# SPDX-License-Identifier: Apache-2.0
3
4apiVersion: apps/v1
5kind: Deployment
6metadata:
7 name: test-1
8 annotations:
9 baz: foo
10 long: 'true'
11 patched: 'a'
12spec:
13 template:
14 spec:
15 containers:
16 - name: foo
17 image: example/sidecar:b
18---
19apiVersion: apps/v1
20kind: StatefulSet
21metadata:
22 name: test-2
23 annotations:
24 foo: bar
25---
26apiVersion: apps/v1
27kind: Deployment
28metadata:
29 name: test-3
30 annotations:
31 foo: bar
32 long: 'true'
33 patched: 'a'
34spec:
35 template:
36 spec:
37 containers:
38 - name: foo
39 image: example/sidecar:b
View as plain text