mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-25 23:03:38 +01:00
25 lines
614 B
YAML
25 lines
614 B
YAML
# traefik helm values
|
|
image:
|
|
tag: "2.9.1"
|
|
|
|
additionalArguments:
|
|
- "--experimental.localPlugins.sablier.moduleName=github.com/acouvreur/sablier"
|
|
|
|
providers:
|
|
kubernetesIngress:
|
|
allowEmptyServices: true
|
|
kubernetesCRD:
|
|
allowEmptyServices: true
|
|
|
|
additionalVolumeMounts:
|
|
- name: local-sablier-plugin
|
|
mountPath: /plugins-local/src/github.com/acouvreur/sablier
|
|
|
|
deployment:
|
|
additionalVolumes:
|
|
- name: local-sablier-plugin
|
|
hostPath:
|
|
# directory location on host
|
|
path: /plugins-local/src/github.com/acouvreur/sablier
|
|
# this field is optional
|
|
type: Directory |