3dd65e4e95
This PR deals with the getting started guides (windows) and tutorials sections. Since the YAML files in the windows directory currently are not referenced at all, this PR refactored the markdown file to correct this problem. When appropriate, we use the YAML content from the markdown in the extracted version.
23 lines
384 B
YAML
23 lines
384 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: iis
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: iis
|
|
replicas: 3
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: iis
|
|
annotations:
|
|
experimental.windows.kubernetes.io/isolation-type: hyperv
|
|
spec:
|
|
containers:
|
|
- name: iis
|
|
image: microsoft/iis
|
|
ports:
|
|
- containerPort: 80
|
|
|