Fix hostPathMounts and add install test (#527)
* Fix hostPathMounts and add install test * whoops fix
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: common-test
|
||||
version: 3.0.1
|
||||
version: 3.0.2
|
||||
# upstream_version:
|
||||
appVersion: none
|
||||
description: Helper chart to test different use cases of the common library
|
||||
|
||||
@@ -0,0 +1,66 @@
|
||||
image:
|
||||
repository: b4bz/homer
|
||||
tag: latest
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /config
|
||||
emptyDir:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
skipuninstall: false
|
||||
|
||||
|
||||
|
||||
hostPathMounts:
|
||||
- name: "hpmmountempty"
|
||||
enabled: true
|
||||
emptyDir:
|
||||
enabled: true
|
||||
mountPath: "/test1"
|
||||
hostPath: ""
|
||||
readOnly: false
|
||||
- name: "hpmmountnonempty"
|
||||
enabled: true
|
||||
emptyDir:
|
||||
enabled: false
|
||||
mountPath: "/test2"
|
||||
hostPath: "/tmp"
|
||||
readOnly: false
|
||||
- name: "hpmmountpermissions"
|
||||
enabled: true
|
||||
setPermissions: true
|
||||
emptyDir:
|
||||
enabled: false
|
||||
mountPath: "/test3"
|
||||
hostPath: "/tmp"
|
||||
readOnly: false
|
||||
- enabled: true
|
||||
setPermissions: true
|
||||
emptyDir:
|
||||
enabled: false
|
||||
mountPath: "/test4"
|
||||
hostPath: "/tmp"
|
||||
readOnly: false
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: true
|
||||
readiness:
|
||||
enabled: true
|
||||
startup:
|
||||
enabled: true
|
||||
Reference in New Issue
Block a user