- helm/fission-values.yaml: storageType=s3, bucket=sless-functions, endPoint=https://s3.msk-1.ngcloud.ru - helm/fission-values-pv.yaml: сохранён PV конфиг для быстрого возврата - helm/fission-s3-secret.yaml: credentials (в .gitignore, не в репо) - .gitignore: добавлен helm/fission-s3-secret.yaml Возврат на PV: kubectl delete deploy executor router storagesvc -n fission helm upgrade fission ... -f helm/fission-values-pv.yaml --no-hooks
35 lines
962 B
YAML
35 lines
962 B
YAML
# Fission helm values — S3 backend (ngcloud msk-1)
|
|
# Применять: helm upgrade fission fission-charts/fission-all --version 1.22.1 \
|
|
# -n fission -f helm/fission-values.yaml -f helm/fission-s3-secret.yaml
|
|
#
|
|
# Секреты — в helm/fission-s3-secret.yaml (в .gitignore, не коммитить!)
|
|
# Вернуться на PV: -f helm/fission-values-pv.yaml (без s3-secret)
|
|
# ПЕРЕД upgrade: kubectl delete deploy executor router -n fission
|
|
|
|
authentication:
|
|
enabled: true
|
|
|
|
defaultNamespace: fission-functions
|
|
|
|
image: naeel/fission-bundle
|
|
imageTag: v1.23.0
|
|
fetcher:
|
|
image: naeel/fetcher
|
|
imageTag: v1.23.0
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageType: s3
|
|
s3:
|
|
bucketName: sless-functions
|
|
subDir: fission
|
|
region: msk-1
|
|
endPoint: https://s3.msk-1.ngcloud.ru
|
|
# accessKeyId и secretAccessKey — в fission-s3-secret.yaml
|
|
|
|
repository: ""
|
|
routerServiceType: ClusterIP
|
|
serviceType: ClusterIP
|
|
|
|
analytics: false
|