vmpooler-deployment/helm-charts/vmpooler/values.yaml
2025-01-29 12:23:12 +05:30

206 lines
4.8 KiB
YAML

# this is used for the site name, the metrics prefix, and is
# the hostname in the ingress
vmpoolerInstance: 'test-instance'
image:
repository: ghcr.io/puppetlabs/vmpooler-deployment/vmpooler
pullPolicy: IfNotPresent
jruby_opts: '-J-XX:+UseG1GC'
configmapName: 'vmpooler-baseconfig'
usage_stats: true
ondemand_request_ttl: '50'
ondemand_clone_limit: '50'
max_lifetime_upper_limit: '336'
vm_lifetime: '2'
vm_lifetime_auth: '12'
timeout: '15'
redis_connection_pool_size: '200'
redis_connection_pool_timeout: '40'
redis_reconnect_attempts: '[0,0.25,0.5,1,2,4,8,16,32,64,128,256,512]'
:dns_configs:
:example:
dns_class: dynamic-dns
domain: 'vmpooler.example.com'
# .json private key, set in ENV var
gce:
keyfile: '/vault/secrets/gce-keyfile.json'
ec2:
keyfile: '/vault/secrets/ec2-keyfile.rsa'
root_keys_script: ''
tracing:
enabled: 'false'
# jaegerHost: 'http://otel-collector.otel-collector.svc:14268/api/traces'
baseconfig_extras: {}
# :config:
# backend_weight:
# vmware_cluster1: 0
# vmware_cluster2: 100
# vmware_cluster4: 180
# auth:
# provider: 'ldap'
# :ldap:
# host: 'ldap.example.com'
# port: 636
# encryption:
# :method: :simple_tls
# :tls_options:
# :ssl_version: 'TLSv1_2'
# base:
# - 'ou=dept1,dc=example,dc=com'
# - 'ou=dept2,dc=example,dc=com'
# user_object:
# - 'uid'
# - 'cn'
additionalConfigFiles: '/etc/vmpooler/config/pools.yaml'
api:
replicaCount: 1
resources:
requests:
cpu: 1500m
memory: 2Gi
limits:
cpu: 2000m
memory: 4Gi
manager:
resources:
requests:
cpu: 4000m
memory: 4Gi
limits:
cpu: 4000m
memory: 4Gi
annotations: {}
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
# Letting the name be created automatically will prevent the SA resource from being
# shared between multiple instances of vmpooler such as when stage and prod are both
# deployed to the same cluster.
name: ''
podSecurityContext:
fsGroup: 1001
securityContext:
capabilities:
drop:
- ALL
runAsNonRoot: true
readOnlyRootFilesystem: true
runAsUser: 1001
runAsGroup: 1001
service:
type: ClusterIP
port: 4567
metricsEnabled: true
ingress:
enabled: false
# useTLS: true
# annotations:
# cert-manager.io/cluster-issuer: letsencrypt-prod
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: 'true'
# nginx.ingress.kubernetes.io/ssl-redirect: 'true'
# domain: k8s.example.com
nodeSelector: {}
tolerations: []
affinity: {}
# Redis provided by bitnami/redis
# For a full list of parameters see: https://github.com/bitnami/charts/tree/master/bitnami/redis/
redis:
fullnameOverride: redis
architecture: standalone
networkPolicy:
enabled: true
master:
podSecurityContext:
enabled: true
fsGroup: 1001
containerSecurityContext:
enabled: true
runAsUser: 1001
resources:
requests:
cpu: 1000m
memory: 2048Mi
limits:
cpu: 1000m
memory: 2048Mi
livenessProbe:
initialDelaySeconds: 40
periodSeconds: 10
failureThreshold: 10
readinessProbe:
initialDelaySeconds: 40
periodSeconds: 10
failureThreshold: 10
lifecycleHooks:
postStart:
exec:
command:
- /bin/sh
- -c
- echo "AUTH $REDIS_PASSWORD\nBGREWRITEAOF" | redis-cli
metrics:
enabled: true
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 200m
memory: 256Mi
# Pools are listed last becaue the list can be really long when listed here.
# The default ConfigMap uses the value of the pools key to create pools.yaml.
# You could, instead, provide your own ConfigMap and specify its name below.
poolsConfigMapName: vmpooler-pools
pools:
- name: 'almalinux-8-x86_64-pixa4'
template: 'templates/cluster2/almalinux-8-x86_64-0.0.2'
folder: 'test-instance/cluster2/almalinux-8-x86_64'
datastore: 'vmpooler_cluster2'
clone_target: 'cluster2'
size: 5
datacenter: 'pix'
provider: 'vsphere-ci67'
snapshot_mainMem_ioBlockPages: '2048'
snapshot_mainMem_iowait: '5'
network: 'vmpooler1'
- name: 'centos-6-x86_64-pixa4'
alias:
- 'centos-6-x86_64'
template: 'templates/cluster2/centos-6.8-x86_64-0.0.2-8gb'
folder: test-instance/cluster2/centos-6-x86_64'
datastore: 'vmpooler_cluster2'
clone_target: 'cluster2'
size: 0
timeout: 5
datacenter: 'pix'
provider: 'vsphere-ci67'
snapshot_mainMem_ioBlockPages: '2048'
snapshot_mainMem_iowait: '5'
network: 'vmpooler2'