Skip to content

Commit 3c37cc3

Browse files
authored
Add Tanzu config (#130)
## Purpose Add Yaml file referenced by docs for configuring a cluster ## Does this introduce a breaking change? <!-- Mark one with an "x". --> ``` [ ] Yes [x] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? <!-- Please check the one that applies to this PR using "x". --> ``` [ ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [x] Documentation content changes [ ] Other... Please describe: ```
1 parent 00e2e76 commit 3c37cc3

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

samples/tanzu-config/psa.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
name: azure-arc
5+
labels:
6+
app.kubernetes.io/managed-by: Helm
7+
pod-security.kubernetes.io/audit: privileged
8+
pod-security.kubernetes.io/enforce: privileged
9+
annotations:
10+
meta.helm.sh/release-name: azure-arc
11+
meta.helm.sh/release-namespace: azure-arc-release
12+
---
13+
apiVersion: v1
14+
kind: Namespace
15+
metadata:
16+
name: arc-workload-identity
17+
labels:
18+
pod-security.kubernetes.io/audit: privileged
19+
pod-security.kubernetes.io/enforce: privileged
20+
---
21+
apiVersion: v1
22+
kind: Namespace
23+
metadata:
24+
name: azure-arc-containerstorage
25+
labels:
26+
pod-security.kubernetes.io/audit: privileged
27+
pod-security.kubernetes.io/enforce: privileged
28+
---
29+
apiVersion: v1
30+
kind: Namespace
31+
metadata:
32+
name: azure-arc-acstor
33+
labels:
34+
pod-security.kubernetes.io/audit: privileged
35+
pod-security.kubernetes.io/enforce: privileged
36+
---
37+
apiVersion: v1
38+
kind: Namespace
39+
metadata:
40+
name: azure-extensions-usage-system
41+
labels:
42+
pod-security.kubernetes.io/audit: privileged
43+
pod-security.kubernetes.io/enforce: privileged
44+
---
45+
apiVersion: v1
46+
kind: Namespace
47+
metadata:
48+
name: azure-secret-store
49+
labels:
50+
pod-security.kubernetes.io/audit: privileged
51+
pod-security.kubernetes.io/enforce: privileged
52+
---
53+
apiVersion: v1
54+
kind: Namespace
55+
metadata:
56+
name: azure-iot-operations
57+
labels:
58+
pod-security.kubernetes.io/audit: privileged
59+
pod-security.kubernetes.io/enforce: privileged
60+

0 commit comments

Comments
 (0)