You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
902 B
39 lines
902 B
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: sapiantools-net
|
|
labels:
|
|
k8s-app: sapiantools-net
|
|
namespace: c-camaramedellin
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: sapiantools-net
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: sapiantools-net
|
|
spec:
|
|
hostNetwork: true
|
|
dnsPolicy: "ClusterFirstWithHostNet"
|
|
nodeSelector:
|
|
sapian-client: camaramedellin
|
|
tolerations:
|
|
- key: "sapian-client"
|
|
operator: "Equal"
|
|
value: "camaramedellin"
|
|
effect: "NoExecute"
|
|
containers:
|
|
- name: sapiantools
|
|
image: quay.io/sapian/sapiantools:latest
|
|
imagePullPolicy: Always
|
|
command: [ "/bin/bash", "-c", "--" ]
|
|
args: [ "while true; do sleep 60; done;" ]
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 100Mi
|
|
volumeMounts: []
|
|
volumes: []
|
|
|