Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bf4b045aa0 | ||
|
89e84772f0 | ||
|
54e2ec7e8a | ||
|
09159f4fb5 | ||
|
f834f328c1 | ||
|
afa5b3af48 | ||
|
f7657a39a1 | ||
|
bb91f2a1bc |
32
.github/workflows/container.yaml
vendored
Normal file
32
.github/workflows/container.yaml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
name: Container Build
|
||||
|
||||
on:
|
||||
push:
|
||||
tags: ['[0-9]+.[0-9]+.[0-9]+']
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
- uses: docker/login-action@v1
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- id: version
|
||||
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
||||
- uses: docker/build-push-action@v2
|
||||
with:
|
||||
platforms: linux/amd64, linux/arm64
|
||||
push: true
|
||||
tags: |-
|
||||
ghcr.io/${{ github.repository }}:latest
|
||||
ghcr.io/${{ github.repository }}:${{ steps.version.outputs.VERSION }}
|
@@ -1,3 +1,12 @@
|
||||
# 0.6.0
|
||||
* New image ghcr.io/storax/kubedoom:0.6.0
|
||||
* Latest image available as ghcr.io/storax/kubedoom:latest.
|
||||
* Add support for building on different architectures.
|
||||
* Update kubernetes to 1.23.2
|
||||
* Update to Ubuntu 21.10
|
||||
* Github Actions for building the image.
|
||||
* VNC password can be configured during build via the `VNCPASSWORD` build argument.
|
||||
|
||||
# 0.5.0
|
||||
|
||||
* New image storaxdev/kubedoom:1.0.0
|
||||
|
64
Dockerfile
64
Dockerfile
@@ -1,56 +1,58 @@
|
||||
FROM golang:1.14-alpine AS gobuild
|
||||
|
||||
FROM golang:1.17-alpine AS build-kubedoom
|
||||
WORKDIR /go/src/kubedoom
|
||||
ADD go.mod .
|
||||
ADD kubedoom.go .
|
||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o kubedoom .
|
||||
|
||||
FROM ubuntu:20.10 AS ubuntu
|
||||
# make sure the package repository is up to date
|
||||
RUN apt-get update
|
||||
|
||||
FROM ubuntu AS ubuntu-deps
|
||||
# Install dependencies
|
||||
RUN apt-get install -y \
|
||||
FROM ubuntu:21.10 AS build-essentials
|
||||
ARG TARGETARCH
|
||||
ARG KUBECTL_VERSION=1.23.2
|
||||
RUN apt-get update && apt-get install -y \
|
||||
-o APT::Install-Suggests=0 \
|
||||
--no-install-recommends \
|
||||
wget ca-certificates
|
||||
RUN wget http://distro.ibiblio.org/pub/linux/distributions/slitaz/sources/packages/d/doom1.wad
|
||||
RUN wget -O /usr/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/$(wget -O- https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
|
||||
RUN echo "TARGETARCH is $TARGETARCH"
|
||||
RUN echo "KUBECTL_VERSION is $KUBECTL_VERSION"
|
||||
RUN wget -O /usr/bin/kubectl "https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/${TARGETARCH}/kubectl" \
|
||||
&& chmod +x /usr/bin/kubectl
|
||||
|
||||
FROM ubuntu AS ubuntu-build
|
||||
|
||||
FROM ubuntu:21.10 AS build-doom
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get install -y \
|
||||
RUN apt-get update && apt-get install -y \
|
||||
-o APT::Install-Suggests=0 \
|
||||
--no-install-recommends \
|
||||
build-essential \
|
||||
libsdl-mixer1.2-dev \
|
||||
libsdl-net1.2-dev \
|
||||
gcc
|
||||
|
||||
# Setup doom
|
||||
ADD /dockerdoom /dockerdoom
|
||||
RUN cd /dockerdoom/trunk && ./configure && make && make install
|
||||
WORKDIR /dockerdoom/trunk
|
||||
RUN ./configure && make && make install
|
||||
|
||||
FROM ubuntu
|
||||
RUN apt-get install -y \
|
||||
FROM ubuntu:21.10 as build-converge
|
||||
WORKDIR /build
|
||||
RUN mkdir -p \
|
||||
/build/root \
|
||||
/build/usr/bin \
|
||||
/build/usr/local/games
|
||||
COPY --from=build-essentials /doom1.wad /build/root
|
||||
COPY --from=build-essentials /usr/bin/kubectl /build/usr/bin
|
||||
COPY --from=build-kubedoom /go/src/kubedoom/kubedoom /build/usr/bin
|
||||
COPY --from=build-doom /usr/local/games/psdoom /build/usr/local/games
|
||||
|
||||
FROM ubuntu:21.10
|
||||
ARG VNCPASSWORD=idbehold
|
||||
RUN apt-get update && apt-get install -y \
|
||||
-o APT::Install-Suggests=0 \
|
||||
--no-install-recommends \
|
||||
libsdl-mixer1.2 \
|
||||
libsdl-net1.2 \
|
||||
x11vnc \
|
||||
xvfb \
|
||||
netcat-openbsd
|
||||
|
||||
WORKDIR /root/
|
||||
|
||||
# Setup a password
|
||||
RUN mkdir ~/.vnc && x11vnc -storepasswd idbehold ~/.vnc/passwd
|
||||
|
||||
COPY --from=ubuntu-deps /doom1.wad .
|
||||
COPY --from=ubuntu-deps /usr/bin/kubectl /usr/bin/
|
||||
COPY --from=ubuntu-build /usr/local/games/psdoom /usr/local/games/
|
||||
COPY --from=gobuild /go/src/kubedoom/kubedoom .
|
||||
|
||||
ENTRYPOINT ["/root/kubedoom"]
|
||||
netcat-openbsd \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
RUN mkdir /root/.vnc && x11vnc -storepasswd "${VNCPASSWORD}" /root/.vnc/passwd
|
||||
COPY --from=build-converge /build /
|
||||
WORKDIR /root
|
||||
ENTRYPOINT ["/usr/bin/kubedoom"]
|
||||
|
30
README.md
30
README.md
@@ -20,25 +20,27 @@ In order to run locally you will need to
|
||||
|
||||
### With Docker
|
||||
|
||||
Run `storaxdev/kubedoom:0.5.0` with docker locally:
|
||||
Run `ghcr.io/storax/kubedoom:latest` with docker locally:
|
||||
|
||||
```console
|
||||
$ docker run -p5901:5900 \
|
||||
--net=host \
|
||||
-v ~/.kube:/root/.kube \
|
||||
--rm -it --name kubedoom \
|
||||
storaxdev/kubedoom:0.5.0
|
||||
ghcr.io/storax/kubedoom:latest
|
||||
```
|
||||
|
||||
Optionally, if you set `-e NAMESPACE={your namespace}` you can limit Kubedoom to deleting pods in a single namespace
|
||||
|
||||
### With Podman
|
||||
|
||||
Run `storaxdev/kubedoom:0.5.0` with podman locally:
|
||||
Run `ghcr.io/storax/kubedoom:latest` with podman locally:
|
||||
|
||||
```console
|
||||
$ podman run -it -p5901:5900/tcp \
|
||||
-v ~/.kube:/tmp/.kube --security-opt label=disable \
|
||||
--env "KUBECONFIG=/tmp/.kube/config" --name kubedoom
|
||||
storaxdev/kubedoom:0.5.0
|
||||
ghcr.io/storax/kubedoom:latest
|
||||
```
|
||||
|
||||
### Attaching a VNC Client
|
||||
@@ -64,7 +66,7 @@ $ docker run -p5901:5900 \
|
||||
--net=host \
|
||||
-v ~/.kube:/root/.kube \
|
||||
--rm -it --name kubedoom \
|
||||
storaxdev/kubedoom:0.5.0 \
|
||||
ghcr.io/storax/kubedoom:latest \
|
||||
-mode namespaces
|
||||
```
|
||||
|
||||
@@ -77,7 +79,7 @@ example config from this repository:
|
||||
```console
|
||||
$ kind create cluster --config kind-config.yaml
|
||||
Creating cluster "kind" ...
|
||||
✓ Ensuring node image (kindest/node:v1.19.1) 🖼
|
||||
✓ Ensuring node image (kindest/node:v1.23.0) 🖼
|
||||
✓ Preparing nodes 📦 📦
|
||||
✓ Writing configuration 📜
|
||||
✓ Starting control-plane 🕹️
|
||||
@@ -97,7 +99,7 @@ the worker node. Then run kubedoom inside the cluster by applying the manifest
|
||||
provided in this repository:
|
||||
|
||||
```console
|
||||
$ kubectl apply -f manifest/
|
||||
$ kubectl apply -k manifest/
|
||||
namespace/kubedoom created
|
||||
deployment.apps/kubedoom created
|
||||
serviceaccount/kubedoom created
|
||||
@@ -110,4 +112,16 @@ $ vncviewer viewer localhost:5900
|
||||
```
|
||||
|
||||
Kubedoom requires a service account with permissions to list all pods and delete
|
||||
them and uses kubectl 1.19.2.
|
||||
them and uses kubectl 1.23.2.
|
||||
|
||||
## Building Kubedoom
|
||||
|
||||
The repository contains a Dockerfile to build the kubedoom image. You have to
|
||||
specify your systems architecture as the `TARGETARCH` build argument. For
|
||||
example `amd64` or `arm64`.
|
||||
|
||||
```console
|
||||
$ docker build --build-arg=TARGETARCH=amd64 -t kubedoom .
|
||||
```
|
||||
|
||||
To change the default VNC password, use `--build-arg=VNCPASSWORD=differentpw`.
|
||||
|
@@ -2,9 +2,9 @@ kind: Cluster
|
||||
apiVersion: kind.x-k8s.io/v1alpha4
|
||||
nodes:
|
||||
- role: control-plane
|
||||
image: kindest/node:v1.19.1@sha256:98cf5288864662e37115e362b23e4369c8c4a408f99cbc06e58ac30ddc721600
|
||||
image: kindest/node:v1.23.0@sha256:49824ab1727c04e56a21a5d8372a402fcd32ea51ac96a2706a12af38934f81ac
|
||||
- role: worker
|
||||
image: kindest/node:v1.19.1@sha256:98cf5288864662e37115e362b23e4369c8c4a408f99cbc06e58ac30ddc721600
|
||||
image: kindest/node:v1.23.0@sha256:49824ab1727c04e56a21a5d8372a402fcd32ea51ac96a2706a12af38934f81ac
|
||||
extraPortMappings:
|
||||
- containerPort: 5900
|
||||
hostPort: 5900
|
||||
|
17
kubedoom.go
17
kubedoom.go
@@ -25,7 +25,7 @@ func hash(input string) int32 {
|
||||
|
||||
func runCmd(cmdstring string) {
|
||||
parts := strings.Split(cmdstring, " ")
|
||||
cmd := exec.Command(parts[0], parts[1:len(parts)]...)
|
||||
cmd := exec.Command(parts[0], parts[1:]...)
|
||||
cmd.Stdout = os.Stdout
|
||||
cmd.Stderr = os.Stderr
|
||||
err := cmd.Run()
|
||||
@@ -35,7 +35,7 @@ func runCmd(cmdstring string) {
|
||||
}
|
||||
|
||||
func outputCmd(argv []string) string {
|
||||
cmd := exec.Command(argv[0], argv[1:len(argv)]...)
|
||||
cmd := exec.Command(argv[0], argv[1:]...)
|
||||
cmd.Stderr = os.Stderr
|
||||
output, err := cmd.Output()
|
||||
if err != nil {
|
||||
@@ -46,7 +46,7 @@ func outputCmd(argv []string) string {
|
||||
|
||||
func startCmd(cmdstring string) {
|
||||
parts := strings.Split(cmdstring, " ")
|
||||
cmd := exec.Command(parts[0], parts[1:len(parts)]...)
|
||||
cmd := exec.Command(parts[0], parts[1:]...)
|
||||
cmd.Stdout = os.Stdout
|
||||
cmd.Stderr = os.Stderr
|
||||
cmd.Stdin = os.Stdin
|
||||
@@ -65,7 +65,12 @@ type podmode struct {
|
||||
}
|
||||
|
||||
func (m podmode) getEntities() []string {
|
||||
args := []string{"kubectl", "get", "pods", "-A", "-o", "go-template", "--template={{range .items}}{{.metadata.namespace}}/{{.metadata.name}} {{end}}"}
|
||||
var args []string
|
||||
if namespace, exists := os.LookupEnv("NAMESPACE"); exists {
|
||||
args = []string{"kubectl", "get", "pods", "--namespace", namespace, "-o", "go-template", "--template={{range .items}}{{.metadata.namespace}}/{{.metadata.name}} {{end}}"}
|
||||
} else {
|
||||
args = []string{"kubectl", "get", "pods", "-A", "-o", "go-template", "--template={{range .items}}{{.metadata.namespace}}/{{.metadata.name}} {{end}}"}
|
||||
}
|
||||
output := outputCmd(args)
|
||||
outputstr := strings.TrimSpace(output)
|
||||
pods := strings.Split(outputstr, " ")
|
||||
@@ -97,7 +102,7 @@ func (m nsmode) deleteEntity(entity string) {
|
||||
}
|
||||
|
||||
func socketLoop(listener net.Listener, mode Mode) {
|
||||
for true {
|
||||
for {
|
||||
conn, err := listener.Accept()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
@@ -169,6 +174,6 @@ func main() {
|
||||
log.Print("You can now connect to it with a VNC viewer at port 5900")
|
||||
|
||||
log.Print("Trying to start DOOM ...")
|
||||
startCmd("/usr/bin/env DISPLAY=:99 /usr/local/games/psdoom -warp -E1M1")
|
||||
startCmd("/usr/bin/env DISPLAY=:99 /usr/local/games/psdoom -warp -E1M1 -skill 1 -nomouse")
|
||||
socketLoop(listener, mode)
|
||||
}
|
||||
|
@@ -1,3 +1,4 @@
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
@@ -18,8 +19,11 @@ spec:
|
||||
hostNetwork: true
|
||||
serviceAccountName: kubedoom
|
||||
containers:
|
||||
- image: storaxdev/kubedoom:0.5.0
|
||||
name: kubedoom
|
||||
ports:
|
||||
- containerPort: 5900
|
||||
name: vnc
|
||||
- image: ghcr.io/storax/kubedoom:latest
|
||||
env:
|
||||
- name: NAMESPACE
|
||||
value: default
|
||||
name: kubedoom
|
||||
ports:
|
||||
- containerPort: 5900
|
||||
name: vnc
|
||||
|
5
manifest/kustomization.yaml
Normal file
5
manifest/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
resources:
|
||||
- namespace.yaml
|
||||
- deployment.yaml
|
||||
- rbac.yaml
|
@@ -1,3 +1,4 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
@@ -1,3 +1,4 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
|
Reference in New Issue
Block a user