generated from phoenix-oss/tenant-tpl
Compare commits
1 commit
main
...
renovate/u
Author | SHA1 | Date | |
---|---|---|---|
2d61efa8a4 |
18 changed files with 357 additions and 25 deletions
|
@ -21,4 +21,3 @@
|
||||||
$ oc get all -n tenant-tpl
|
$ oc get all -n tenant-tpl
|
||||||
|
|
||||||
```
|
```
|
||||||
Great big fire
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
volumeMode: Filesystem
|
volumeMode: Filesystem
|
||||||
accessModes: [ "ReadWriteOnce" ]
|
accessModes: [ "ReadWriteOnce" ]
|
||||||
storageClassName: ibm-spectrum-scale-fileset
|
storageClassName: ocs-storagecluster-ceph-rbd
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 50Gi
|
storage: 50Gi
|
|
@ -19,13 +19,13 @@ spec:
|
||||||
subdomain: pod
|
subdomain: pod
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
fsGroup: 1001070000
|
fsGroup: 1002070000
|
||||||
fsGroupChangePolicy: OnRootMismatch
|
fsGroupChangePolicy: OnRootMismatch
|
||||||
seccompProfile:
|
seccompProfile:
|
||||||
type: RuntimeDefault
|
type: RuntimeDefault
|
||||||
containers:
|
containers:
|
||||||
- name: ubuntu-deployment-pod
|
- name: ubuntu-deployment-pod
|
||||||
image: ubuntu:22.04
|
image: ubuntu:24.04
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command: ["bash","-lc","sleep infinity"]
|
command: ["bash","-lc","sleep infinity"]
|
||||||
securityContext:
|
securityContext:
|
||||||
|
|
|
@ -12,7 +12,10 @@ resources:
|
||||||
- ubuntu-vm-1/ks.yaml
|
- ubuntu-vm-1/ks.yaml
|
||||||
- ubuntu-vm-2/ks.yaml
|
- ubuntu-vm-2/ks.yaml
|
||||||
- ubuntu-vm-3/ks.yaml
|
- ubuntu-vm-3/ks.yaml
|
||||||
- deployment/ks.yaml
|
- ubuntu-vm-4-john/ks.yaml
|
||||||
|
- ubuntu-vm-5/ks.yaml
|
||||||
|
- ubuntu-vm-6/ks.yaml
|
||||||
|
- deployment/ubuntu-deployment/ks.yaml
|
||||||
- container/ks-debug.yaml
|
- container/ks-debug.yaml
|
||||||
- templates/image-server/ks-nginx.yaml
|
- templates/image-server/ks-nginx.yaml
|
||||||
- templates/image-server/ks-pvc.yaml
|
- templates/image-server/ks-pvc.yaml
|
||||||
|
@ -20,3 +23,5 @@ resources:
|
||||||
- templates/windowsserver/ks-flavor.yaml
|
- templates/windowsserver/ks-flavor.yaml
|
||||||
- templates/windowsserver-rh/ks-flavor.yaml
|
- templates/windowsserver-rh/ks-flavor.yaml
|
||||||
- postgres/ks.yaml
|
- postgres/ks.yaml
|
||||||
|
# - windows-vm-standard-john/ks-vm.yaml
|
||||||
|
# - windows-vm-standard-john/ks-pvc.yaml
|
||||||
|
|
|
@ -7,7 +7,7 @@ spec:
|
||||||
commonMetadata:
|
commonMetadata:
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: *app
|
app.kubernetes.io/name: *app
|
||||||
path: ./ubuntu-vm-3/vm
|
path: ./ubuntu-vm-3/ubuntu
|
||||||
prune: true
|
prune: true
|
||||||
sourceRef:
|
sourceRef:
|
||||||
kind: GitRepository
|
kind: GitRepository
|
||||||
|
|
50
ubuntu-vm-3/ubuntu/ubuntu-vm.yaml
Normal file
50
ubuntu-vm-3/ubuntu/ubuntu-vm.yaml
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
apiVersion: kubevirt.io/v1
|
||||||
|
kind: VirtualMachine
|
||||||
|
metadata:
|
||||||
|
name: ubuntu-vm-3
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
running: true
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
kubevirt.io/domain: ubuntu-vm-3
|
||||||
|
spec:
|
||||||
|
domain:
|
||||||
|
cpu:
|
||||||
|
cores: 2
|
||||||
|
devices:
|
||||||
|
disks:
|
||||||
|
- disk:
|
||||||
|
bus: virtio
|
||||||
|
name: containerdisk
|
||||||
|
- disk:
|
||||||
|
bus: virtio
|
||||||
|
name: cloudinitdisk
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: 2Gi
|
||||||
|
cpu: 1
|
||||||
|
limits:
|
||||||
|
memory: 2Gi
|
||||||
|
cpu: 2
|
||||||
|
memory:
|
||||||
|
guest: 2Gi
|
||||||
|
volumes:
|
||||||
|
- name: containerdisk
|
||||||
|
containerDisk:
|
||||||
|
image: quay.io/containerdisks/ubuntu:22.04
|
||||||
|
- name: cloudinitdisk
|
||||||
|
cloudInitNoCloud:
|
||||||
|
userData: |
|
||||||
|
#cloud-config
|
||||||
|
users:
|
||||||
|
- name: testuser
|
||||||
|
groups: [sudo]
|
||||||
|
sudo: "ALL=(ALL) NOPASSWD:ALL"
|
||||||
|
lock_passwd: false
|
||||||
|
passwd: "$6$oMZf5uou7t0.oAJ1$825Te06yt7JZwHSSj4MGQMjpd87LflANQpajCwIVPASkKZdOJo4L2bAEDDuK.jtu.fsRNc9bZAsYefmoqdN8O1"
|
||||||
|
|
||||||
|
chpasswd:
|
||||||
|
expire: false
|
||||||
|
ssh_pwauth: true
|
18
ubuntu-vm-4-john/ks.yaml
Normal file
18
ubuntu-vm-4-john/ks.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: &app ubuntu-vm-4-john
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
commonMetadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: *app
|
||||||
|
path: ./ubuntu-vm-4-john/ubuntu
|
||||||
|
prune: true
|
||||||
|
sourceRef:
|
||||||
|
kind: GitRepository
|
||||||
|
name: tenant-repos
|
||||||
|
wait: false
|
||||||
|
interval: 30m
|
||||||
|
retryInterval: 1m
|
||||||
|
timeout: 5m
|
48
ubuntu-vm-4-john/ubuntu/ubuntu-vm.yaml
Normal file
48
ubuntu-vm-4-john/ubuntu/ubuntu-vm.yaml
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
apiVersion: kubevirt.io/v1
|
||||||
|
kind: VirtualMachine
|
||||||
|
metadata:
|
||||||
|
name: ubuntu-vm-4-john
|
||||||
|
namespace: kubevirt-vms
|
||||||
|
spec:
|
||||||
|
running: true
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
kubevirt.io/domain: ubuntu-vm-4-john
|
||||||
|
spec:
|
||||||
|
domain:
|
||||||
|
cpu:
|
||||||
|
cores: 2
|
||||||
|
devices:
|
||||||
|
disks:
|
||||||
|
- disk:
|
||||||
|
bus: virtio
|
||||||
|
name: containerdisk
|
||||||
|
- disk:
|
||||||
|
bus: virtio
|
||||||
|
name: cloudinitdisk
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: 2Gi
|
||||||
|
cpu: 1
|
||||||
|
limits:
|
||||||
|
memory: 2Gi
|
||||||
|
cpu: 2
|
||||||
|
memory:
|
||||||
|
guest: 2Gi
|
||||||
|
volumes:
|
||||||
|
- name: containerdisk
|
||||||
|
containerDisk:
|
||||||
|
image: quay.io/containerdisks/ubuntu:22.04
|
||||||
|
- name: cloudinitdisk
|
||||||
|
cloudInitNoCloud:
|
||||||
|
userData: |
|
||||||
|
#cloud-config
|
||||||
|
hostname: ubuntu-vm-2
|
||||||
|
ssh_pwauth: True
|
||||||
|
users:
|
||||||
|
- name: ubuntu
|
||||||
|
ssh-authorized-keys:
|
||||||
|
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPqlhZW/pPLK8zENt3o6tgl0QVinhGAF1sHvajqq3UvI ubuntu
|
||||||
|
sudo: ['ALL=(ALL) NOPASSWD:ALL']
|
||||||
|
shell: /bin/bash
|
18
ubuntu-vm-5/ks.yaml
Normal file
18
ubuntu-vm-5/ks.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: &app ubuntu-vm-5
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
commonMetadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: *app
|
||||||
|
path: ./ubuntu-vm-5/vm
|
||||||
|
prune: true
|
||||||
|
sourceRef:
|
||||||
|
kind: GitRepository
|
||||||
|
name: tenant-repos
|
||||||
|
wait: false
|
||||||
|
interval: 30m
|
||||||
|
retryInterval: 1m
|
||||||
|
timeout: 5m
|
|
@ -1,10 +1,10 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
metadata:
|
metadata:
|
||||||
name: ubuntu-datadisk-3
|
name: ubuntu-datadisk-1
|
||||||
namespace: ${TENANT_NAMESPACE}
|
namespace: ${TENANT_NAMESPACE}
|
||||||
labels:
|
labels:
|
||||||
app: ubuntu-vm-3
|
app: ubuntu-vm-1
|
||||||
spec:
|
spec:
|
||||||
volumeMode: Filesystem
|
volumeMode: Filesystem
|
||||||
accessModes:
|
accessModes:
|
|
@ -1,7 +1,7 @@
|
||||||
apiVersion: kubevirt.io/v1
|
apiVersion: kubevirt.io/v1
|
||||||
kind: VirtualMachine
|
kind: VirtualMachine
|
||||||
metadata:
|
metadata:
|
||||||
name: &name ubuntu-vm-3
|
name: &name ubuntu-vm-1
|
||||||
namespace: ${TENANT_NAMESPACE}
|
namespace: ${TENANT_NAMESPACE}
|
||||||
spec:
|
spec:
|
||||||
running: true
|
running: true
|
||||||
|
@ -12,13 +12,13 @@ spec:
|
||||||
kubevirt.io/domain: *name
|
kubevirt.io/domain: *name
|
||||||
spec:
|
spec:
|
||||||
hostname: ubuntu
|
hostname: ubuntu
|
||||||
subdomain: test
|
subdomain: vitabyte
|
||||||
domain:
|
domain:
|
||||||
devices:
|
devices:
|
||||||
disks:
|
disks:
|
||||||
- disk:
|
- disk:
|
||||||
bus: scsi
|
bus: scsi
|
||||||
name: ubuntu-rootdisk-3
|
name: ubuntu-rootdisk
|
||||||
- disk:
|
- disk:
|
||||||
bus: scsi
|
bus: scsi
|
||||||
name: ubuntu-datadisk
|
name: ubuntu-datadisk
|
||||||
|
@ -37,12 +37,12 @@ spec:
|
||||||
cpu: 2
|
cpu: 2
|
||||||
memory: 2Gi
|
memory: 2Gi
|
||||||
volumes:
|
volumes:
|
||||||
- name: ubuntu-rootdisk-3
|
- name: ubuntu-rootdisk
|
||||||
containerDisk:
|
containerDisk:
|
||||||
image: quay.io/containerdisks/ubuntu:22.04
|
image: quay.io/containerdisks/ubuntu:22.04
|
||||||
- name: ubuntu-datadisk
|
- name: ubuntu-datadisk
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: ubuntu-datadisk-3
|
claimName: ubuntu-datadisk-1
|
||||||
- name: cloudinit-disk
|
- name: cloudinit-disk
|
||||||
cloudInitNoCloud:
|
cloudInitNoCloud:
|
||||||
secretRef:
|
secretRef:
|
18
ubuntu-vm-6/ks.yaml
Normal file
18
ubuntu-vm-6/ks.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: &app ubuntu-vm-6
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
commonMetadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: *app
|
||||||
|
path: ./ubuntu-vm-3/ubuntu
|
||||||
|
prune: true
|
||||||
|
sourceRef:
|
||||||
|
kind: GitRepository
|
||||||
|
name: tenant-repos
|
||||||
|
wait: false
|
||||||
|
interval: 30m
|
||||||
|
retryInterval: 1m
|
||||||
|
timeout: 5m
|
50
ubuntu-vm-6/ubuntu/ubuntu-vm.yaml
Normal file
50
ubuntu-vm-6/ubuntu/ubuntu-vm.yaml
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
apiVersion: kubevirt.io/v1
|
||||||
|
kind: VirtualMachine
|
||||||
|
metadata:
|
||||||
|
name: ubuntu-vm-3
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
running: true
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
kubevirt.io/domain: ubuntu-vm-3
|
||||||
|
spec:
|
||||||
|
domain:
|
||||||
|
cpu:
|
||||||
|
cores: 2
|
||||||
|
devices:
|
||||||
|
disks:
|
||||||
|
- disk:
|
||||||
|
bus: virtio
|
||||||
|
name: containerdisk
|
||||||
|
- disk:
|
||||||
|
bus: virtio
|
||||||
|
name: cloudinitdisk
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: 2Gi
|
||||||
|
cpu: 1
|
||||||
|
limits:
|
||||||
|
memory: 2Gi
|
||||||
|
cpu: 2
|
||||||
|
memory:
|
||||||
|
guest: 2Gi
|
||||||
|
volumes:
|
||||||
|
- name: containerdisk
|
||||||
|
containerDisk:
|
||||||
|
image: quay.io/containerdisks/ubuntu:22.04
|
||||||
|
- name: cloudinitdisk
|
||||||
|
cloudInitNoCloud:
|
||||||
|
userData: |
|
||||||
|
#cloud-config
|
||||||
|
users:
|
||||||
|
- name: testuser
|
||||||
|
groups: [sudo]
|
||||||
|
sudo: "ALL=(ALL) NOPASSWD:ALL"
|
||||||
|
lock_passwd: false
|
||||||
|
passwd: "$6$oMZf5uou7t0.oAJ1$825Te06yt7JZwHSSj4MGQMjpd87LflANQpajCwIVPASkKZdOJo4L2bAEDDuK.jtu.fsRNc9bZAsYefmoqdN8O1"
|
||||||
|
|
||||||
|
chpasswd:
|
||||||
|
expire: false
|
||||||
|
ssh_pwauth: true
|
18
windows-vm-standard-john/ks-pvc.yaml
Normal file
18
windows-vm-standard-john/ks-pvc.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: &app windows-pvc-john
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
commonMetadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: *app
|
||||||
|
path: ./windows-vm-standard-john/pvc
|
||||||
|
prune: true
|
||||||
|
sourceRef:
|
||||||
|
kind: GitRepository
|
||||||
|
name: tenant-repos
|
||||||
|
wait: false
|
||||||
|
interval: 30m
|
||||||
|
retryInterval: 1m
|
||||||
|
timeout: 5m
|
18
windows-vm-standard-john/ks-vm.yaml
Normal file
18
windows-vm-standard-john/ks-vm.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||||
|
kind: Kustomization
|
||||||
|
metadata:
|
||||||
|
name: &app windows-vm-standard-john
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
commonMetadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: *app
|
||||||
|
path: ./windows-vm-standard-john/vm
|
||||||
|
prune: true
|
||||||
|
sourceRef:
|
||||||
|
kind: GitRepository
|
||||||
|
name: tenant-repos
|
||||||
|
wait: false
|
||||||
|
interval: 30m
|
||||||
|
retryInterval: 1m
|
||||||
|
timeout: 5m
|
12
windows-vm-standard-john/pvc/datadisk.yaml
Normal file
12
windows-vm-standard-john/pvc/datadisk.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: windows-vm-datadisk-john
|
||||||
|
spec:
|
||||||
|
storageClassName: ibm-spectrum-scale-fileset
|
||||||
|
volumeMode: Filesystem
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteMany
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 200Gi
|
82
windows-vm-standard-john/vm/server.yaml
Normal file
82
windows-vm-standard-john/vm/server.yaml
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
apiVersion: kubevirt.io/v1
|
||||||
|
kind: VirtualMachine
|
||||||
|
metadata:
|
||||||
|
name: windows-vm-standard-john
|
||||||
|
namespace: ${TENANT_NAMESPACE}
|
||||||
|
spec:
|
||||||
|
dataVolumeTemplates:
|
||||||
|
- metadata:
|
||||||
|
name: windows-rootdisk-john
|
||||||
|
spec:
|
||||||
|
source:
|
||||||
|
http:
|
||||||
|
url: http://nginx.demo.svc.cluster.local:80/windows-server-2022-uefi-ns.qcow2
|
||||||
|
storage:
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 80Gi
|
||||||
|
# sourceRef:
|
||||||
|
# kind: DataSource
|
||||||
|
# name: win2k22
|
||||||
|
# namespace: openshift-virtualization-os-images
|
||||||
|
runStrategy: Always
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
kubevirt.io/domain: windows-vm-standard-john
|
||||||
|
spec:
|
||||||
|
domain:
|
||||||
|
cpu:
|
||||||
|
cores: 4
|
||||||
|
memory:
|
||||||
|
guest: 8Gi
|
||||||
|
features:
|
||||||
|
acpi: {}
|
||||||
|
smm:
|
||||||
|
enabled: true
|
||||||
|
firmware:
|
||||||
|
bootloader:
|
||||||
|
efi: {}
|
||||||
|
devices:
|
||||||
|
rng: {}
|
||||||
|
networkInterfaceMultiqueue: true
|
||||||
|
interfaces:
|
||||||
|
- name: default
|
||||||
|
masquerade: {}
|
||||||
|
ports:
|
||||||
|
- port: 8080
|
||||||
|
- port: 443
|
||||||
|
- port: 22
|
||||||
|
- port: 3389
|
||||||
|
disks:
|
||||||
|
- disk:
|
||||||
|
bus: sata
|
||||||
|
name: rootdisk-john
|
||||||
|
- disk:
|
||||||
|
bus: sata
|
||||||
|
name: datadisk-john
|
||||||
|
# - disk:
|
||||||
|
# bus: scsi
|
||||||
|
# name: cloudinitdisk
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: 8Gi
|
||||||
|
cpu: 4
|
||||||
|
limits:
|
||||||
|
memory: 8Gi
|
||||||
|
cpu: 4
|
||||||
|
networks:
|
||||||
|
- name: default
|
||||||
|
pod: {}
|
||||||
|
terminationGracePeriodSeconds: 180
|
||||||
|
volumes:
|
||||||
|
- name: rootdisk-john
|
||||||
|
dataVolume:
|
||||||
|
name: windows-rootdisk-john
|
||||||
|
- name: datadisk-john
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: windows-vm-datadisk-john
|
||||||
|
#- name: cloudinitdisk
|
||||||
|
# cloudInitNoCloud:
|
||||||
|
# secretRef:
|
||||||
|
# name: windows-cloud-init
|
|
@ -10,15 +10,15 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
source:
|
source:
|
||||||
http:
|
http:
|
||||||
url: "https://glacier-1.kvant.cloud/ocp-virt-images/sources/windows-server-2022-uefi-ns.qcow2"
|
url: http://nginx.demo.svc.cluster.local:8080/windows-server-2022-uefi-ns.qcow2
|
||||||
storage:
|
storage:
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 80Gi
|
storage: 80Gi
|
||||||
#sourceRef:
|
sourceRef:
|
||||||
#kind: DataSource
|
kind: DataSource
|
||||||
#name: win2k22
|
name: win2k22
|
||||||
#namespace: openshift-virtualization-os-images
|
namespace: kubevirt-os-images
|
||||||
runStrategy: Always
|
runStrategy: Always
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -38,13 +38,10 @@ spec:
|
||||||
bootloader:
|
bootloader:
|
||||||
efi: {}
|
efi: {}
|
||||||
devices:
|
devices:
|
||||||
#gpus:
|
|
||||||
#- name: gpu01
|
|
||||||
#deviceName: nvidia.com/gpu
|
|
||||||
rng: {}
|
rng: {}
|
||||||
networkInterfaceMultiqueue: true
|
networkInterfaceMultiqueue: true
|
||||||
interfaces:
|
interfaces:
|
||||||
- name: ingress
|
- name: default
|
||||||
masquerade: {}
|
masquerade: {}
|
||||||
ports:
|
ports:
|
||||||
- port: 8080
|
- port: 8080
|
||||||
|
@ -56,7 +53,7 @@ spec:
|
||||||
bus: sata
|
bus: sata
|
||||||
name: rootdisk
|
name: rootdisk
|
||||||
- disk:
|
- disk:
|
||||||
bus: scsi
|
bus: sata
|
||||||
name: datadisk
|
name: datadisk
|
||||||
# - disk:
|
# - disk:
|
||||||
# bus: scsi
|
# bus: scsi
|
||||||
|
@ -68,9 +65,8 @@ spec:
|
||||||
limits:
|
limits:
|
||||||
memory: 8Gi
|
memory: 8Gi
|
||||||
cpu: 4
|
cpu: 4
|
||||||
#nvidia.com/gpu: 1
|
|
||||||
networks:
|
networks:
|
||||||
- name: ingress
|
- name: default
|
||||||
pod: {}
|
pod: {}
|
||||||
terminationGracePeriodSeconds: 180
|
terminationGracePeriodSeconds: 180
|
||||||
volumes:
|
volumes:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue