mirror of
https://github.com/bitnami/charts.git
synced 2026-03-07 08:07:55 +08:00
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
## Global chart image registry
|
|
## Please, note that this registry would be used for all the containers in the chart and dependencies
|
|
##
|
|
# global:
|
|
# registry:
|
|
|
|
## Bitnami NGINX image version
|
|
## ref: https://hub.docker.com/r/bitnami/nginx/tags/
|
|
##
|
|
image:
|
|
registry: docker.io
|
|
repository: bitnami/nginx
|
|
tag: 1.14.0-debian-9
|
|
## Specify a imagePullPolicy
|
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
|
##
|
|
pullPolicy: IfNotPresent
|
|
## Optionally specify an array of imagePullSecrets.
|
|
## Secrets must be manually created in the namespace.
|
|
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
|
|
##
|
|
# pullSecrets:
|
|
# - myRegistrKeySecretName
|
|
|
|
## Kubernetes configuration
|
|
## For minikube, set this to NodePort, elsewhere use LoadBalancer
|
|
##
|
|
serviceType: LoadBalancer
|
|
|
|
# vhost: |-
|
|
# # example PHP-FPM vhost
|
|
# server {
|
|
# listen 0.0.0.0:8080;
|
|
# root /app;
|
|
# location / {
|
|
# index index.html index.php;
|
|
# }
|
|
# location ~ \.php$ {
|
|
# fastcgi_pass phpfpm-server:9000;
|
|
# fastcgi_index index.php;
|
|
# include fastcgi.conf;
|
|
# }
|
|
# }
|