-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathentries.json
85 lines (84 loc) · 2.06 KB
/
entries.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"entries": [
{
"spiffe_id": "spiffe://example.org/spire-agent-node",
"parent_id": "spiffe://example.org/spire/server",
"node": "true",
"selectors": [
{
"type": "k8s_psat",
"value": "agent_ns:spire"
},
{
"type": "k8s_psat",
"value": "agent_sa:spire-agent"
},
{
"type": "k8s_psat",
"value": "cluster:spire-cluster"
}
]
},
{
"parent_id": "spiffe://example.org/spire-agent-node",
"spiffe_id": "spiffe://example.org/postgres-sidecar",
"x509_svid_ttl": 60,
"selectors": [
{
"type": "k8s",
"value": "container-name:postgres-sidecar"
},
{
"type": "k8s",
"value": "ns:postgres-ns"
}
]
},
{
"parent_id": "spiffe://example.org/spire-agent-node",
"spiffe_id": "spiffe://example.org/api",
"dns_names": [ "symuser" ],
"x509_svid_ttl": 60,
"selectors": [
{
"type": "k8s",
"value": "container-name:api"
},
{
"type": "k8s",
"value": "ns:api-ns"
}
]
},
{
"parent_id": "spiffe://example.org/spire-agent-node",
"spiffe_id": "spiffe://example.org/api-proxy",
"x509_svid_ttl": 60,
"selectors": [
{
"type": "k8s",
"value": "container-name:api-proxy"
},
{
"type": "k8s",
"value": "ns:api-ns"
}
]
},
{
"parent_id": "spiffe://example.org/spire-agent-node",
"spiffe_id": "spiffe://example.org/client-proxy",
"x509_svid_ttl": 60,
"selectors": [
{
"type": "k8s",
"value": "container-name:client-proxy"
},
{
"type": "k8s",
"value": "ns:client-ns"
}
]
}
]
}