33# Declare variables to be passed into your templates.
44
55# The Diffgram Version. Whenever a new update arrives, this will be changed.
6- diffgramVersion : latest
6+ diffgramVersion : 0.13.3
77
88# Either 'opencore' or 'enterprise'. Please note that selecting 'enterprise'
99# requires that you also set imagePullCredentials.gcrCredentials.
@@ -15,9 +15,9 @@ diffgramEdition: opencore
1515diffgramDomain : example.com
1616
1717# Set this to true if you want to use cert manager for TLS certificates generation.
18- useCertManager : false
18+ useCertManager : true
1919# Use it to activate TLS on the nginx ingress
20- useTls : false
20+ useTls : true
2121
2222dbSettings :
2323 # Specify How the DB Service should be created
@@ -38,8 +38,8 @@ dbSettings:
3838# All the Secrets Used in Diffgram.
3939diffgramSecrets :
4040 STRIPE_API_KEY : none
41- DIFFGRAM_AWS_ACCESS_KEY_ID : none
42- DIFFGRAM_AWS_ACCESS_KEY_SECRET : none
41+ DIFFGRAM_AWS_ACCESS_KEY_ID : write_your_aws_access_key
42+ DIFFGRAM_AWS_ACCESS_KEY_SECRET : write_your_aws_access_key_secret
4343 _ANALYTICS_WRITE_KEY : provided_by_diffgram_team
4444 MAILGUN_KEY : provided_by_diffgram_team
4545 HUB_SPOT_KEY : provided_by_diffgram_team
@@ -58,17 +58,17 @@ diffgramSettings:
5858 USERDOMAIN : kubernetes
5959 WALRUS_SERVICE_URL_BASE : example.com
6060 DIFFGRAM_SYSTEM_MODE : production
61- DIFFGRAM_STATIC_STORAGE_PROVIDER : gcp
61+ DIFFGRAM_STATIC_STORAGE_PROVIDER : aws
6262 DIFFGRAM_S3_BUCKET_NAME : none
6363 DIFFGRAM_AZURE_CONTAINER_NAME : none
6464 ML__DIFFGRAM_AZURE_CONTAINER_NAME : none
6565 ML__DIFFGRAM_S3_BUCKET_NAME : diffgram-testing
6666 CLOUD_STORAGE_BUCKET : diffgram-testing
6767 ML__CLOUD_STORAGE_BUCKET : diffgram-testing
6868 SERVICE_ACCOUNT_FULL_PATH : /etc/gcp/sa_credentials.json
69- PROCESS_MEDIA_NUM_VIDEO_THREADS : " 1"
70- PROCESS_MEDIA_NUM_FRAME_THREADS : " 4"
71- DATABASE_CONNECTION_POOL_SIZE : " 10"
69+ PROCESS_MEDIA_NUM_VIDEO_THREADS : ' "1"'
70+ PROCESS_MEDIA_NUM_FRAME_THREADS : ' "4"'
71+ DATABASE_CONNECTION_POOL_SIZE : ' "10"'
7272 GOOGLE_APPLICATION_CREDENTIALS : /etc/gcp/sa_credentials.json # Check the volume in deployment.yaml and service_account_secret.yaml
7373 EMAIL_DOMAIN_NAME : example.com
7474
@@ -81,10 +81,10 @@ diffgramSettings:
8181 # If you know the OS diffgram is running ON put it here, otherwise leave default
8282 DIFFGRAM_HOST_OS : helm_os_default
8383 NEW_RELIC_LICENSE_KEY : none
84- ALLOW_EVENTHUB : False
85- EMAIL_VALIDATION : False
86- ALLOW_STRIPE_BILLING : False
87- IS_OPEN_SOURCE : True
84+ ALLOW_EVENTHUB : ' " False" '
85+ EMAIL_VALIDATION : ' " False" '
86+ ALLOW_STRIPE_BILLING : ' " False" '
87+ IS_OPEN_SOURCE : ' " True" '
8888
8989imagePullCredentials :
9090 # The service account with permissions to pull from the GCR Repository. [Should be Provided by Diffgram Team.]
@@ -95,30 +95,30 @@ nodeGroupLabel: null
9595# The service for API calls.
9696# This are minimal defaults. Please feel free to change them as you start having more usage
9797defaultService :
98- numReplicas : 2
98+ numReplicas : 1
9999 requests :
100- cpu : " 2 .0"
101- memory : " 4G "
100+ cpu : " 1 .0"
101+ memory : " 1G "
102102 limits :
103103 cpu : " 2.0"
104- memory : " 4G "
104+ memory : " 2G "
105105# The service for the UI frontend.
106106# This are minimal defaults. Please feel free to change them as you start having more usage
107107frontendService :
108108 numReplicas : 1
109109 requests :
110- cpu : " 2 .0"
111- memory : " 2G "
110+ cpu : " 1 .0"
111+ memory : " 1G "
112112 limits :
113- cpu : " 2 .0"
114- memory : " 2G "
113+ cpu : " 1 .0"
114+ memory : " 1G "
115115# The service for video processing. This is where the heavy processing takes place.
116116# This are minimal defaults. Please feel free to change them as you start having more usage
117117walrusService :
118- numReplicas : 2
118+ numReplicas : 1
119119 requests :
120- cpu : " 4 .0"
121- memory : " 14G "
120+ cpu : " 1 .0"
121+ memory : " 1G "
122122 limits :
123- cpu : " 8 .0"
124- memory : " 32G "
123+ cpu : " 2 .0"
124+ memory : " 2G "
0 commit comments