Last active
October 25, 2021 03:16
-
-
Save nataliefl/a3347345dcda21aa9e3424c2a8df10df to your computer and use it in GitHub Desktop.
kube-proxy setup for amd64 and arm architecture
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: DaemonSet | |
metadata: | |
labels: | |
k8s-app: kube-proxy | |
name: kube-proxy-amd64 | |
namespace: kube-system | |
spec: | |
revisionHistoryLimit: 10 | |
selector: | |
matchLabels: | |
k8s-app: kube-proxy | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
k8s-app: kube-proxy | |
spec: | |
containers: | |
- command: | |
- /usr/local/bin/kube-proxy | |
- --config=/var/lib/kube-proxy/config.conf | |
image: gcr.io/google_containers/kube-proxy-amd64:v1.9.6 | |
imagePullPolicy: IfNotPresent | |
name: kube-proxy | |
resources: {} | |
securityContext: | |
privileged: true | |
terminationMessagePath: /dev/termination-log | |
terminationMessagePolicy: File | |
volumeMounts: | |
- mountPath: /var/lib/kube-proxy | |
name: kube-proxy | |
- mountPath: /run/xtables.lock | |
name: xtables-lock | |
- mountPath: /lib/modules | |
name: lib-modules | |
readOnly: true | |
dnsPolicy: ClusterFirst | |
hostNetwork: true | |
nodeSelector: | |
beta.kubernetes.io/arch: amd64 | |
restartPolicy: Always | |
schedulerName: default-scheduler | |
securityContext: {} | |
serviceAccount: kube-proxy | |
serviceAccountName: kube-proxy | |
terminationGracePeriodSeconds: 30 | |
tolerations: | |
- effect: NoSchedule | |
key: node-role.kubernetes.io/master | |
- effect: NoSchedule | |
key: node.cloudprovider.kubernetes.io/uninitialized | |
value: "true" | |
volumes: | |
- configMap: | |
defaultMode: 420 | |
name: kube-proxy | |
name: kube-proxy | |
- hostPath: | |
path: /run/xtables.lock | |
type: FileOrCreate | |
name: xtables-lock | |
- hostPath: | |
path: /lib/modules | |
type: "" | |
name: lib-modules | |
templateGeneration: 1 | |
updateStrategy: | |
rollingUpdate: | |
maxUnavailable: 1 | |
type: RollingUpdate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: DaemonSet | |
metadata: | |
labels: | |
k8s-app: kube-proxy | |
name: kube-proxy | |
namespace: kube-system | |
spec: | |
revisionHistoryLimit: 10 | |
selector: | |
matchLabels: | |
k8s-app: kube-proxy | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
k8s-app: kube-proxy | |
spec: | |
containers: | |
- command: | |
- /usr/local/bin/kube-proxy | |
- --config=/var/lib/kube-proxy/config.conf | |
image: gcr.io/google_containers/kube-proxy-arm:v1.9.6 | |
imagePullPolicy: IfNotPresent | |
name: kube-proxy | |
resources: {} | |
securityContext: | |
privileged: true | |
terminationMessagePath: /dev/termination-log | |
terminationMessagePolicy: File | |
volumeMounts: | |
- mountPath: /var/lib/kube-proxy | |
name: kube-proxy | |
- mountPath: /run/xtables.lock | |
name: xtables-lock | |
- mountPath: /lib/modules | |
name: lib-modules | |
readOnly: true | |
dnsPolicy: ClusterFirst | |
hostNetwork: true | |
nodeSelector: | |
beta.kubernetes.io/arch: arm | |
restartPolicy: Always | |
schedulerName: default-scheduler | |
securityContext: {} | |
serviceAccount: kube-proxy | |
serviceAccountName: kube-proxy | |
terminationGracePeriodSeconds: 30 | |
tolerations: | |
- effect: NoSchedule | |
key: node-role.kubernetes.io/master | |
- effect: NoSchedule | |
key: node.cloudprovider.kubernetes.io/uninitialized | |
value: "true" | |
volumes: | |
- configMap: | |
defaultMode: 420 | |
name: kube-proxy | |
name: kube-proxy | |
- hostPath: | |
path: /run/xtables.lock | |
type: FileOrCreate | |
name: xtables-lock | |
- hostPath: | |
path: /lib/modules | |
type: "" | |
name: lib-modules | |
templateGeneration: 1 | |
updateStrategy: | |
rollingUpdate: | |
maxUnavailable: 1 | |
type: RollingUpdate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment