Compare commits

...

3 Commits

Author SHA1 Message Date
frank 3e32617dbc
Merge 4379d93f3b into fd1fd1c48f 2024-05-08 23:26:54 -05:00
Kroese fd1fd1c48f
fix: Disable Mido debug output (#470) 2024-05-08 23:25:15 +02:00
frank 4379d93f3b
kubernetes yaml demo 2024-03-22 17:53:18 +08:00
2 changed files with 45 additions and 2 deletions

45
kubernetes.yml Normal file
View File

@ -0,0 +1,45 @@
apiVersion: v1
kind: Pod
metadata:
name: windows-pod
labels:
name: windows-pod
spec:
containers:
- name: windows
image: dockurr/windows
ports:
- containerPort: 8006
- containerPort: 3389
protocol: TCP
resources:
limits:
devices.kubevirt.io/kvm: 1
securityContext:
privileged: true
env:
- name: RAM_SIZE
value: 16G
- name: CPU_CORES
value: "8"
---
apiVersion: v1
kind: Service
metadata:
name: windows-service
spec:
type: NodePort
selector:
name: windows-pod
ports:
- name: tcp-8006
protocol: TCP
port: 8006
targetPort: 8006
nodePort: 48006
- name: tcp-3389
protocol: TCP
port: 3389
targetPort: 3389
nodePort: 43389

View File

@ -3,8 +3,6 @@
# Copyright (C) 2024 Elliot Killick <contact@elliotkillick.com>
# Licensed under the MIT License. See LICENSE file for details.
[ "$DEBUG" ] && set -x
# Prefer Dash shell for greater security if available
if [ "$BASH" ] && command -v dash > /dev/null; then
exec dash "$0" "$@"