peterkellydev / wg-rhcos

WireGuard container based on UBI8 intended for deployment on RHCOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wg-rhcos

This container is created on a base UBI8 image. Then we install wireguard inside the container so we can use it on an RHCOS node.

OpenShift

A sample pod.yml is included for OpenShift (k8s) deployment.

RHCOS

To deploy the wg-rhcos container on a bare RHCOS node:

sudo podman run -d \
  --privileged \
  --network host \
  --mount type=bind,source=/etc/resolv.conf,target=/etc/resolv.conf \
  -v /etc/os-release:/etc/os-release:ro \
  -v /var/lib/containers/storage/overlay:/tmp/overlay:ro \
  -v /etc/wireguard:/etc/wireguard \
  --restart on-failure \
  quay.io/jugs/wg-rhcos

About

WireGuard container based on UBI8 intended for deployment on RHCOS


Languages

Language:Shell 83.4%Language:Dockerfile 16.6%