File tree Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ type: application
5
5
version : 0.2.0
6
6
appVersion : " 0.2.0"
7
7
sources : ["https://github.com/aws/aws-nitro-enclaves-with-k8s"]
8
+ icon : https://d3g9o9u8re44ak.cloudfront.net/logo/f9feca19-5e84-465f-9d3a-ce348d996b61/3301cc66-e044-48e8-ac9e-1496f4103b01.png
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ $ helm upgrade my-release \
25
25
| -----| ------| ---------| -------------|
26
26
| awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.containerSecurityContext.allowPrivilegeEscalation | bool | ` false ` | |
27
27
| awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.containerSecurityContext.capabilities.drop[ 0] | string | ` "ALL" ` | |
28
+ | awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.env.enclaveCpuAdvertisement | string | ` "true" ` | |
29
+ | awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.env.maxEnclavesPerNode | string | ` "4" ` | |
28
30
| awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.image.repository | string | ` "public.ecr.aws/aws-nitro-enclaves/aws-nitro-enclaves-k8s-device-plugin" ` | |
29
31
| awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.image.tag | string | ` "v0.2" ` | |
30
32
| awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.imagePullPolicy | string | ` "Always" ` | |
Original file line number Diff line number Diff line change @@ -21,10 +21,17 @@ spec:
21
21
spec :
22
22
containers :
23
23
- env :
24
+ - name : MAX_ENCLAVES_PER_NODE
25
+ value : {{ quote .Values.awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.env.maxEnclavesPerNode
26
+ }}
27
+ - name : ENCLAVE_CPU_ADVERTISEMENT
28
+ value : {{ quote .Values.awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.env.enclaveCpuAdvertisement
29
+ }}
24
30
- name : KUBERNETES_CLUSTER_DOMAIN
25
31
value : {{ quote .Values.kubernetesClusterDomain }}
26
32
image : {{ .Values.awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.image.repository
27
- }}:{{ .Values.awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.image.tag }}
33
+ }}:{{ .Values.awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.image.tag | default
34
+ .Chart.AppVersion }}
28
35
imagePullPolicy : {{ .Values.awsNitroEnclavesK8SDaemonset.awsNitroEnclavesK8SDp.imagePullPolicy
29
36
}}
30
37
name : aws-nitro-enclaves-k8s-dp
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ awsNitroEnclavesK8SDaemonset:
5
5
capabilities :
6
6
drop :
7
7
- ALL
8
+ env :
9
+ enclaveCpuAdvertisement : " true"
10
+ maxEnclavesPerNode : " 4"
8
11
image :
9
12
repository : public.ecr.aws/aws-nitro-enclaves/aws-nitro-enclaves-k8s-device-plugin
10
13
tag : v0.2
You can’t perform that action at this time.
0 commit comments