can i novnc to ubuntu docker via pod

9/19/2021

I'm using the

docker run -p 6081:6081 -v /dev/shm:/dev/shm dorowu/ubuntu-desktop-lxde-vnc
docker run -p 6081:443 -e SSL_PORT=443 -v ${PWD}/ssl:/etc/nginx/ssl -v /dev/shm:/dev/shm dorowu/ubuntu-desktop-lxde-vnc

I can access the docker from https://localhost:6081 in encrypted but cannot manage to operate it via deployment for kubernetes

my deployment file

apiVersion: apps/v1
kind: Deployment
metadata:
  name: test
  namespace: test
spec:
  selector:
    matchLabels:
      app: test
  replicas: 1
  template:
    metadata:
      labels:
        app: test
    spec:
      containers:
      - name: test
        image: dorowu/ubuntu-desktop-lxde-vnc 
        imagePullPolicy: Always
        ports:
        - containerPort: 443
        env:
        - name: RESOLUTION
          value: "1920x1080"
        - name: SSL_PORT
          value: "443" 

how can i refer my local ssl from my deployment to the kubernetes cluster?

-- shaharnakash
kubernetes
novnc
ubuntu

1 Answer

9/20/2021

You can create TLS SECRETS as mentioned in doc1 with your cert data and you can either refer the created secret as a ENV VAR or mount it inside the pod.

1 - https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets

-- Chandra Sekar
Source: StackOverflow