Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for Windows Server version 1709 with K8s v1.8 #6180

Merged
merged 46 commits into from
Dec 7, 2017
Merged
Show file tree
Hide file tree
Changes from 125 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
ba8258a
Updated for WSv1709 and K8s v1.8
Oct 19, 2017
b41b9d2
Updated picture and CNI config
Oct 19, 2017
44bb863
Fixed formatting on CNI Config
Oct 19, 2017
703c5f8
Merge branch 'master' of https://github.com/kubernetes/website into W…
Nov 3, 2017
6a6922c
Updated docs to reference Microsoft/SDN GitHub docs
Nov 3, 2017
c056787
fix typo
runzexia Nov 30, 2017
b84ac59
Workaround for Jekyllr frontmatter
tengqm Nov 30, 2017
e5acb8e
Merge pull request #6509 from runzexia/patch-1
heckj Dec 1, 2017
a99a42f
Merge pull request #6510 from tengqm/frontmatter-workaround
tengqm Dec 1, 2017
a88e70c
Added section on features and limitations, with example yaml files.
bsteciuk Nov 30, 2017
4468bda
Update index.md
michmike Dec 1, 2017
ffd6057
Added kubeadm section, few other small fixes
bsteciuk Dec 1, 2017
3e5c06d
Few minor grammar fixes
bsteciuk Dec 1, 2017
31e4dbd
Update access-cluster.md with a comment that for IPv6
Dec 1, 2017
3308735
Addressed a number of issues brought up against the base PR
bsteciuk Dec 1, 2017
5d89b14
Fixed windows-host-setup link
bsteciuk Dec 1, 2017
5d39cfe
Rewrite PodSecurityPolicy guide
tallclair Nov 20, 2017
f7543a3
Merge pull request #6378 from tallclair/psp-docs
tengqm Dec 2, 2017
ee8801d
Update index.md
alinbalutoiu Dec 2, 2017
3585405
Merge pull request #2 from alinbalutoiu/WSv1709NetUpdates_updated
bsteciuk Dec 2, 2017
0ca9deb
Merge pull request #6534 from rpothier/ipv6
tengqm Dec 2, 2017
47eed43
Spelling correction and sentence capitalization.
dminGod Dec 2, 2017
0b9fd9a
Merge pull request #6539 from dminGod/patch-1
tengqm Dec 3, 2017
ed832e3
Update index.md
michmike Dec 4, 2017
ae44007
Update index.md
michmike Dec 4, 2017
95638a2
Merge pull request #1 from bsteciuk/WSv1709NetUpdates
JMesser81 Dec 4, 2017
87f3f9e
Merge branch 'master' of https://github.com/kubernetes/website into W…
Dec 4, 2017
9865d04
Merge branch 'WSv1709NetUpdates' of https://github.com/JMesser81/kube…
Dec 4, 2017
d7c1e3f
Addressed comments and rebased
Dec 4, 2017
551c2a8
Fixed formatting
Dec 4, 2017
b353c56
Fixed formatting
Dec 4, 2017
d761624
Merge remote-tracking branch 'upstream/release-1.9' into WSv1709NetUp…
Dec 4, 2017
34bfdfc
Updated header link
Dec 4, 2017
fcf42fa
Updated hyperlinks
Dec 4, 2017
21d5307
Updated warning
Dec 4, 2017
780d53d
formatting
Dec 4, 2017
c9b268e
formatting
Dec 4, 2017
a091ea4
formatting
Dec 4, 2017
616c342
Revert "Update access-cluster.md with a comment that for IPv6"
Dec 5, 2017
a6bce76
Revert "fix typo"
Dec 5, 2017
babfe58
Revert "Workaround for Jekyllr frontmatter"
Dec 5, 2017
45ea42d
Fixed grammatical issues and reverted non-related commits
Dec 5, 2017
3b2f03d
Revert "Rewrite PodSecurityPolicy guide"
Dec 5, 2017
e320e97
Revert "Spelling correction and sentence capitalization."
Dec 5, 2017
61bec6c
Fixed auto-numbering
Dec 5, 2017
907bc08
Minor formatting updates
Dec 7, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions docs/getting-started-guides/windows/configmap-pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
kind: ConfigMap
apiVersion: v1
metadata:
name: example-config
data:
example.property.1: hello
example.property.2: world

---

apiVersion: v1
kind: Pod
metadata:
name: configmap-pod
spec:
containers:
- name: configmap-redis
image: redis:3.0-nanoserver
env:
- name: EXAMPLE_PROPERTY_1
valueFrom:
configMapKeyRef:
name: example-config
key: example.property.1
- name: EXAMPLE_PROPERTY_2
valueFrom:
configMapKeyRef:
name: example-config
key: example.property.2
nodeSelector:
beta.kubernetes.io/os: windows
20 changes: 20 additions & 0 deletions docs/getting-started-guides/windows/emptydir-pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
apiVersion: v1
kind: Pod
metadata:
name: empty-dir-pod
spec:
containers:
- image: redis:3.0-nanoserver
name: empty-dir-redis
volumeMounts:
- mountPath: /cache
name: cache-volume
- mountPath: C:/scratch
name: scratch-volume
volumes:
- name: cache-volume
emptyDir: {}
- name: scratch-volume
emptyDir: {}
nodeSelector:
beta.kubernetes.io/os: windows
18 changes: 18 additions & 0 deletions docs/getting-started-guides/windows/hostpath-volume-pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: v1
kind: Pod
metadata:
name: hostpath-volume-pod
spec:
containers:
- name: hostpath-redis
image: redis:3.0-nanoserver
volumeMounts:
- name: blah
mountPath: "C:\\etc\\foo"
readOnly: true
nodeSelector:
beta.kubernetes.io/os: windows
volumes:
- name: blah
hostPath:
path: "C:\\etc\\foo"
451 changes: 360 additions & 91 deletions docs/getting-started-guides/windows/index.md

Large diffs are not rendered by default.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"cniVersion": "0.2.0",
"name": "l2bridge",
"type": "wincni.exe",
"master": "Ethernet",
"ipam": {
"environment": "azure",
"subnet": "10.10.187.64/26",
"routes": [
{
"GW": "10.10.187.66"
}
]
},
"dns": {
"Nameservers": [
"11.0.0.10"
]
},
"AdditionalArgs": [
{
"Name": "EndpointPolicy",
"Value": {
"Type": "OutBoundNAT",
"ExceptionList": [
"11.0.0.0/8",
"10.10.0.0/16",
"10.127.132.128/25"
]
}
},
{
"Name": "EndpointPolicy",
"Value": {
"Type": "ROUTE",
"DestinationPrefix": "11.0.0.0/8",
"NeedEncap": true
}
},
{
"Name": "EndpointPolicy",
"Value": {
"Type": "ROUTE",
"DestinationPrefix": "10.127.132.213/32",
"NeedEncap": true
}
}
]
}
32 changes: 32 additions & 0 deletions docs/getting-started-guides/windows/secret-pod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
apiVersion: v1
kind: Secret
metadata:
name: mysecret
type: Opaque
data:
username: YWRtaW4=
password: MWYyZDFlMmU2N2Rm

---

apiVersion: v1
kind: Pod
metadata:
name: mypod-secret
spec:
containers:
- name: mypod-secret
image: redis:3.0-nanoserver
env:
- name: USERNAME
valueFrom:
secretKeyRef:
name: mysecret
key: username
- name: PASSWORD
valueFrom:
secretKeyRef:
name: mysecret
key: password
nodeSelector:
beta.kubernetes.io/os: windows