Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Last active December 11, 2021 11:03
Show Gist options
  • Save larkintuckerllc/2229c667f08163daace846ef2ed3a260 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/2229c667f08163daace846ef2ed3a260 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Service
metadata:
name: hdac
spec:
ports:
- port: 443
protocol: TCP
targetPort: 8443
selector:
run: hdac
---
apiVersion: v1
kind: Pod
metadata:
labels:
run: hdac
name: hdac
spec:
containers:
- image: [OMITTED]/hdac:0.1.1
name: hdac
ports:
- containerPort: 8443
imagePullPolicy: Always
command: ["/bin/sh"]
args:
- -c
- "tail -f /dev/null"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment