You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/adrs/010-security-responder.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,7 @@ The collected data will include the following information:
50
50
- serverNodeCount
51
51
- agentNodeCount
52
52
- cni-plugin
53
+
- ingress-controller
53
54
- os
54
55
- selinux
55
56
@@ -65,19 +66,23 @@ Example payload structure:
65
66
"serverNodeCount": 3,
66
67
"agentNodeCount": 2,
67
68
"cni-plugin": "flannel",
69
+
"ingress-controller": "rke2-ingress-nginx",
68
70
"os": "ubuntu",
69
71
"selinux": "enabled"
70
72
}
71
73
}
72
74
```
73
75
74
-
The `clusteruuid` is needed to differentiate between different deployments (the UUID of `kube-system`). It is completely random and does not expose privacy considerations.
76
+
The `clusteruuid` is needed to differentiate between different deployments (the UUID of `kube-system`). It is completely random and does not expose privacy considerations. We could even consider hashing it to increase the obfuscation.
75
77
76
78
### Configuration Interface Example
77
79
80
+
The security-responder is packaged using a helm chart. We can interact with it as we do with other helm charts. For example, to disable it:
0 commit comments