add short names

add publish conditions for services

use official gitea helm chart
This commit is contained in:
ace
2021-01-25 21:04:57 +03:00
parent f1694a4e81
commit 82c5f35eda
26 changed files with 182 additions and 156 deletions

View File

@ -1,5 +1,6 @@
pypiserver_enabled: true
pypiserver_publish: false
pypiserver_short_name: "pip"
pypiserver_default_values:
## If you want more than 1 replica you will have to use a ReadWriteMany volume
replicaCount: 1
@ -35,11 +36,11 @@ pypiserver_default_values:
nginx.ingress.kubernetes.io/proxy-send-timeout: "600"
path: "/"
hosts:
- pip.{{ domain }}
- "{{ pypiserver_short_name }}.{{ domain }}"
tls:
- secretName: pip.{{ domain }}-tls
- secretName: "{{ pypiserver_short_name }}.{{ domain }}-tls"
hosts:
- pip.{{ domain }}
- "{{ pypiserver_short_name }}.{{ domain }}"
persistence:
enabled: true
storageClass: "{{ pypiserver_storage | default('nfs-hdd') }}"