switch to zot

This commit is contained in:
2024-05-08 17:38:52 +02:00
parent cb2ce491a1
commit 8c09f38193
30 changed files with 479 additions and 39 deletions

View File

@ -1,4 +1,3 @@
---
apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
@ -7,7 +6,7 @@ metadata:
{{- include "softplayer-backend.labels" . | nindent 4 }}
spec:
gateways:
- istio-system/badhouseplants-net
- {{ .Values.istio.gateway }}
hosts:
- {{ .Values.config.hostname }}
http:

View File

@ -1,12 +1,16 @@
config:
hostname: softplayer.dev.badhouseplants.net
# hostname: softplayer-backend.badhouseplants.net
replicaCount: 1
istio:
gateway: istio-system/network-base
# gateway: istio-system/badhouseplants-net
image:
repository: git.badhouseplants.net/softplayer/softplayer-backend
pullPolicy: Always
tag: latest
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
@ -66,17 +70,20 @@ autoscaling:
# targetMemoryUtilizationPercentage: 80
# Additional volumes on the output Deployment definition.
volumes: []
# - name: foo
# secret:
# secretName: mysecret
# optional: false
volumes:
- name: tmp
emptyDir: {}
- name: tmpsoftplayer
emptyDir: {}
# Additional volumeMounts on the output Deployment definition.
volumeMounts: []
# - name: foo
# mountPath: "/etc/foo"
# readOnly: true
volumeMounts:
- name: tmp
mountPath: "/tmp"
readOnly: false
- name: tmpsoftplayer
mountPath: "/tmpsoftplayer"
readOnly: false
nodeSelector: {}