Last active
August 11, 2017 09:27
-
-
Save groundnuty/8436c40aef48d58a0093e5e0cf7c75d5 to your computer and use it in GitHub Desktop.
cyfronet-1 wave for k8s 1.6
This file contains hidden or 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: v1 | |
| kind: List | |
| items: | |
| - apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: weave-net | |
| annotations: | |
| cloud.weave.works/launcher-info: |- | |
| { | |
| "server-version": "master-dce0837", | |
| "original-request": { | |
| "url": "/k8s/v1.6/net.yaml", | |
| "date": "Thu Aug 10 2017 11:26:41 GMT+0000 (UTC)" | |
| }, | |
| "email-address": "[email protected]" | |
| } | |
| labels: | |
| name: weave-net | |
| namespace: kube-system | |
| - apiVersion: rbac.authorization.k8s.io/v1beta1 | |
| kind: ClusterRole | |
| metadata: | |
| name: weave-net | |
| annotations: | |
| cloud.weave.works/launcher-info: |- | |
| { | |
| "server-version": "master-dce0837", | |
| "original-request": { | |
| "url": "/k8s/v1.6/net.yaml", | |
| "date": "Thu Aug 10 2017 11:26:41 GMT+0000 (UTC)" | |
| }, | |
| "email-address": "[email protected]" | |
| } | |
| labels: | |
| name: weave-net | |
| rules: | |
| - apiGroups: | |
| - '' | |
| resources: | |
| - pods | |
| - namespaces | |
| - nodes | |
| verbs: | |
| - get | |
| - list | |
| - watch | |
| - apiGroups: | |
| - extensions | |
| resources: | |
| - networkpolicies | |
| verbs: | |
| - get | |
| - list | |
| - watch | |
| - apiVersion: rbac.authorization.k8s.io/v1beta1 | |
| kind: ClusterRoleBinding | |
| metadata: | |
| name: weave-net | |
| annotations: | |
| cloud.weave.works/launcher-info: |- | |
| { | |
| "server-version": "master-dce0837", | |
| "original-request": { | |
| "url": "/k8s/v1.6/net.yaml", | |
| "date": "Thu Aug 10 2017 11:26:41 GMT+0000 (UTC)" | |
| }, | |
| "email-address": "[email protected]" | |
| } | |
| labels: | |
| name: weave-net | |
| roleRef: | |
| kind: ClusterRole | |
| name: weave-net | |
| apiGroup: rbac.authorization.k8s.io | |
| subjects: | |
| - kind: ServiceAccount | |
| name: weave-net | |
| namespace: kube-system | |
| - apiVersion: extensions/v1beta1 | |
| kind: DaemonSet | |
| metadata: | |
| name: weave-net | |
| annotations: | |
| cloud.weave.works/launcher-info: |- | |
| { | |
| "server-version": "master-dce0837", | |
| "original-request": { | |
| "url": "/k8s/v1.6/net.yaml", | |
| "date": "Thu Aug 10 2017 11:26:41 GMT+0000 (UTC)" | |
| }, | |
| "email-address": "[email protected]" | |
| } | |
| labels: | |
| name: weave-net | |
| namespace: kube-system | |
| spec: | |
| template: | |
| metadata: | |
| labels: | |
| name: weave-net | |
| spec: | |
| containers: | |
| - name: weave | |
| command: | |
| - /home/weave/launch.sh | |
| env: | |
| - name: HOSTNAME | |
| valueFrom: | |
| fieldRef: | |
| apiVersion: v1 | |
| fieldPath: spec.nodeName | |
| image: 'weaveworks/weave-kube:2.0.1' | |
| imagePullPolicy: Always | |
| livenessProbe: | |
| httpGet: | |
| host: 127.0.0.1 | |
| path: /status | |
| port: 6784 | |
| initialDelaySeconds: 30 | |
| resources: | |
| requests: | |
| cpu: 10m | |
| securityContext: | |
| privileged: true | |
| volumeMounts: | |
| - name: weavedb | |
| mountPath: /weavedb | |
| - name: cni-bin | |
| mountPath: /host/opt | |
| - name: cni-bin2 | |
| mountPath: /host/home | |
| - name: cni-conf | |
| mountPath: /host/etc | |
| - name: dbus | |
| mountPath: /host/var/lib/dbus | |
| - name: lib-modules | |
| mountPath: /lib/modules | |
| - name: weave-npc | |
| env: | |
| - name: HOSTNAME | |
| valueFrom: | |
| fieldRef: | |
| apiVersion: v1 | |
| fieldPath: spec.nodeName | |
| - name: IPALLOC_RANGE | |
| value: 10.32.0.0/17 | |
| - name: WEAVE_MTU | |
| value: "1300" | |
| image: 'weaveworks/weave-npc:2.0.1' | |
| imagePullPolicy: Always | |
| resources: | |
| requests: | |
| cpu: 10m | |
| securityContext: | |
| privileged: true | |
| hostNetwork: true | |
| hostPID: true | |
| restartPolicy: Always | |
| securityContext: | |
| seLinuxOptions: {} | |
| serviceAccountName: weave-net | |
| tolerations: | |
| - effect: NoSchedule | |
| operator: Exists | |
| volumes: | |
| - name: weavedb | |
| hostPath: | |
| path: /var/lib/weave | |
| - name: cni-bin | |
| hostPath: | |
| path: /opt | |
| - name: cni-bin2 | |
| hostPath: | |
| path: /home | |
| - name: cni-conf | |
| hostPath: | |
| path: /etc | |
| - name: dbus | |
| hostPath: | |
| path: /var/lib/dbus | |
| - name: lib-modules | |
| hostPath: | |
| path: /lib/modules | |
| updateStrategy: | |
| type: RollingUpdate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment