Update notes, add privileged flag for kubernetes
This commit is contained in:
parent
24c236ac76
commit
424379c76c
2 changed files with 18 additions and 3 deletions
|
|
@ -34,11 +34,13 @@ docker push ungleich/firefox-java-vnc
|
||||||
|
|
||||||
* Switched to Ubuntu 16.04 as the base image
|
* Switched to Ubuntu 16.04 as the base image
|
||||||
* Added kubernetes sample deployment
|
* Added kubernetes sample deployment
|
||||||
|
* Does not work with iDRAC 6
|
||||||
|
|
||||||
### 0.0.1
|
### 0.0.1
|
||||||
|
|
||||||
* Initial release based on Ubuntu 14.04
|
* Initial release based on Ubuntu 14.04
|
||||||
* Firefox somewhat working, mostly failing to load any page...
|
* Works with iDRAC 6
|
||||||
|
|
||||||
|
|
||||||
## Credit
|
## Credit
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,9 +14,22 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: firefox
|
- name: firefox
|
||||||
image: ungleich/firefox-java-vnc:0.0.2
|
image: ungleich/firefox-java-vnc:0.0.1
|
||||||
imagePullPolicy: Always
|
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
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue