Skip to content

Instantly share code, notes, and snippets.

@eshleebien
Created December 31, 2019 07:46
Show Gist options
  • Select an option

  • Save eshleebien/d8e5e631d1eed9e9e574146a19a5ffc9 to your computer and use it in GitHub Desktop.

Select an option

Save eshleebien/d8e5e631d1eed9e9e574146a19a5ffc9 to your computer and use it in GitHub Desktop.
For Inotify Minikube medium article
apiVersion: apps/v1
kind: Deployment
metadata:
name: notify-forwarder
spec:
replicas: 1
selector:
matchLabels:
app: notify-forwarder
template:
metadata:
labels:
app: notify-forwarder
spec:
containers:
- image: eshlee/notify-forwarder:latest
name: notify-forwarder
imagePullPolicy: Always
args:
- "receive"
volumeMounts:
- mountPath: /srv
name: srv
ports:
- containerPort: 29324
volumes:
- hostPath:
path: /<remote-path>
type: ""
name: srv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment