Skip to content

Instantly share code, notes, and snippets.

View danpaul81's full-sized avatar

Daniel Paul danpaul81

  • Portworx by Pure Storage
  • Leipzig
View GitHub Profile
apiVersion: v1
kind: Pod
metadata:
name: root-shell
namespace: kube-system
spec:
containers:
- name: shell
image: alpine
command:
@danpaul81
danpaul81 / Dockerfile
Last active January 26, 2026 12:27
Storkctl clusterpair containerized creation
FROM --platform=linux/amd64 golang:1.20-alpine3.18 AS build
RUN wget -P / https://github.com/libopenstorage/stork/archive/refs/tags/v23.11.0.tar.gz
RUN tar -xzf /v23.11.0.tar.gz
RUN cd stork-23.11.0/cmd/storkctl/; go install
FROM --platform=linux/amd64 alpine:3.18
COPY --from=build /go/bin/storkctl /root/go/bin/storkctl