From 424379c76c4c648ac7c4ea024ab1bc0486fad28e Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 20 Aug 2022 23:13:19 +0200 Subject: [PATCH] Update notes, add privileged flag for kubernetes --- README.md | 4 +++- deployment.yaml | 17 +++++++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5ce0c62..8cf454e 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,13 @@ docker push ungleich/firefox-java-vnc * Switched to Ubuntu 16.04 as the base image * Added kubernetes sample deployment +* Does not work with iDRAC 6 ### 0.0.1 * Initial release based on Ubuntu 14.04 -* Firefox somewhat working, mostly failing to load any page... +* Works with iDRAC 6 + ## Credit diff --git a/deployment.yaml b/deployment.yaml index 849a1c5..40188dd 100644 --- a/deployment.yaml +++ b/deployment.yaml @@ -14,9 +14,22 @@ spec: spec: containers: - name: firefox - image: ungleich/firefox-java-vnc:0.0.2 + image: ungleich/firefox-java-vnc:0.0.1 imagePullPolicy: Always ---- + volumeMounts: + - mountPath: /dev/shm + name: cache-volume + + securityContext: + privileged: true + capabilities: + add: ["SYS_ADMIN" ] + + volumes: + - emptyDir: + medium: Memory + sizeLimit: 2Gi + name: cache-volume --- apiVersion: v1 kind: Service