Small Tests and repo fixes (#80)
* Small organisational fixes * Add some new common tests
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
name: common-test
|
||||
description: Helper chart to test different use cases of the common library
|
||||
version: 1.1.0
|
||||
version: 1.2.0
|
||||
keywords:
|
||||
- truecharts
|
||||
- common
|
||||
|
||||
@@ -10,21 +10,6 @@ service:
|
||||
ingress:
|
||||
enabled: true
|
||||
|
||||
appIngressEnabled: true
|
||||
appIngress:
|
||||
main:
|
||||
enabled: true
|
||||
|
||||
appVolumesEnabled: false
|
||||
appVolumeMounts:
|
||||
data:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
datasetName: "data"
|
||||
mountPath: "/data"
|
||||
hostPathEnabled: false
|
||||
hostPath: ""
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: true
|
||||
@@ -32,3 +17,59 @@ probes:
|
||||
enabled: true
|
||||
startup:
|
||||
enabled: true
|
||||
|
||||
|
||||
appIngressEnabled: true
|
||||
appIngress:
|
||||
main:
|
||||
enabled: true
|
||||
mainhttp:
|
||||
enabled: true
|
||||
entrypoint: "web"
|
||||
certType: ""
|
||||
existingcert: ""
|
||||
authForwardURL: ""
|
||||
annotations: {}
|
||||
labels: {}
|
||||
hosts:
|
||||
- host: app.truecharts.placeholder
|
||||
paths:
|
||||
- path: /
|
||||
# Ignored if not kubeVersion >= 1.14-0
|
||||
pathType: Prefix
|
||||
|
||||
appVolumesEnabled: true
|
||||
appVolumeMounts:
|
||||
data:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
datasetName: "data"
|
||||
mountPath: "/data"
|
||||
hostPathEnabled: true
|
||||
hostPath: "/tmp"
|
||||
test:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
datasetName: "test"
|
||||
mountPath: "/test"
|
||||
hostPathEnabled: true
|
||||
hostPath: "/tmp"
|
||||
|
||||
appAdditionalServicesEnabled: true
|
||||
appAdditionalServices:
|
||||
extra-tcp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51414
|
||||
name: tcp-test
|
||||
protocol: TCP
|
||||
targetPort: 51414
|
||||
extra-udp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51414
|
||||
name: udp-test
|
||||
protocol: UDP
|
||||
targetPort: 51414
|
||||
@@ -10,27 +10,12 @@ service:
|
||||
ingress:
|
||||
enabled: true
|
||||
|
||||
appIngressEnabled: true
|
||||
appIngress:
|
||||
main:
|
||||
enabled: true
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
mountPath: /www/assets
|
||||
|
||||
appVolumesEnabled: false
|
||||
appVolumeMounts:
|
||||
data:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
datasetName: "data"
|
||||
mountPath: "/data"
|
||||
hostPathEnabled: false
|
||||
hostPath: ""
|
||||
|
||||
addons:
|
||||
codeserver:
|
||||
enabled: true
|
||||
@@ -40,3 +25,58 @@ addons:
|
||||
volumeMounts:
|
||||
- name: config
|
||||
mountPath: /www/assets
|
||||
|
||||
appIngressEnabled: true
|
||||
appIngress:
|
||||
main:
|
||||
enabled: true
|
||||
mainhttp:
|
||||
enabled: true
|
||||
entrypoint: "web"
|
||||
certType: ""
|
||||
existingcert: ""
|
||||
authForwardURL: ""
|
||||
annotations: {}
|
||||
labels: {}
|
||||
hosts:
|
||||
- host: app.truecharts.placeholder
|
||||
paths:
|
||||
- path: /
|
||||
# Ignored if not kubeVersion >= 1.14-0
|
||||
pathType: Prefix
|
||||
|
||||
appVolumesEnabled: true
|
||||
appVolumeMounts:
|
||||
data:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
datasetName: "data"
|
||||
mountPath: "/data"
|
||||
hostPathEnabled: true
|
||||
hostPath: "/tmp"
|
||||
test:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
datasetName: "test"
|
||||
mountPath: "/test"
|
||||
hostPathEnabled: true
|
||||
hostPath: "/tmp"
|
||||
|
||||
appAdditionalServicesEnabled: true
|
||||
appAdditionalServices:
|
||||
extra-tcp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51414
|
||||
name: tcp-test
|
||||
protocol: TCP
|
||||
targetPort: 51414
|
||||
extra-udp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51414
|
||||
name: udp-test
|
||||
protocol: UDP
|
||||
targetPort: 51414
|
||||
@@ -37,4 +37,30 @@ appVolumeMounts:
|
||||
datasetName: "data"
|
||||
mountPath: "/data"
|
||||
hostPathEnabled: false
|
||||
hostPath: ""
|
||||
hostPath: ""
|
||||
test:
|
||||
enabled: true
|
||||
emptyDir: true
|
||||
datasetName: "test"
|
||||
mountPath: "/test"
|
||||
hostPathEnabled: false
|
||||
hostPath: ""
|
||||
|
||||
appAdditionalServicesEnabled: true
|
||||
appAdditionalServices:
|
||||
extra-tcp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51414
|
||||
name: tcp-test
|
||||
protocol: TCP
|
||||
targetPort: 51414
|
||||
extra-udp:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
port:
|
||||
port: 51414
|
||||
name: udp-test
|
||||
protocol: UDP
|
||||
targetPort: 51414
|
||||
Reference in New Issue
Block a user