Create umbraco
All checks were successful
Upload Helm Chart / Explore-Gitea-Actions (push) Successful in 3s
All checks were successful
Upload Helm Chart / Explore-Gitea-Actions (push) Successful in 3s
This commit is contained in:
134
README.md
134
README.md
@@ -1,3 +1,135 @@
|
||||
# umbraco
|
||||
Helm chart for Umbraco deployments
|
||||
|
||||
Helm chart for Umbraco deployments
|
||||
## Values
|
||||
```yaml
|
||||
customer:
|
||||
# The customer name (DNS-Compliant)
|
||||
name: customerdomain-tld
|
||||
|
||||
# The customer legal name
|
||||
legalName: Customer Name Ltd.
|
||||
|
||||
# The customer legal ID
|
||||
legalId: 112233-4455
|
||||
|
||||
# The customer timezone
|
||||
timezone: "Europe/Stockholm"
|
||||
|
||||
site:
|
||||
name: "customerdomain-tld"
|
||||
|
||||
primaryDomain: customerdomain.tld
|
||||
additionalDomains:
|
||||
- www.customerdomain.tld
|
||||
|
||||
image: "cr.cloudyne.io/umbraco/umbraco:8.14.0"
|
||||
|
||||
user:
|
||||
ASPNETCORE_ENVIRONMENT: "Production"
|
||||
AppSettings__Recaptcha__SecretKey: ""
|
||||
AppSettings__Recaptcha__SiteKey: ""
|
||||
ConnectionStrings__umbracoDbDSN: ""
|
||||
Umbraco__Storage__AzureBlob__Media__ConnectionString: ""
|
||||
Umbraco__Storage__AzureBlob__Media__ContainerName: ""
|
||||
Umbraco__Storage__CDN__REMOVEMEDIAFROMPATH: "true"
|
||||
Umbraco__Storage__CDN__URL: ""
|
||||
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: "false"
|
||||
Umbraco__CMS__WebRouting__UmbracoApplicationUrl: ""
|
||||
VIRTUAL_HOST: ""
|
||||
|
||||
|
||||
external:
|
||||
Umbraco__CMS__Global__Smtp__From: bm8tcmVwbHlAbm92ZWEuY2xvdWQ=
|
||||
Umbraco__CMS__Global__Smtp__Host: c210cC5jbG91ZHluZS5uZXQ=
|
||||
Umbraco__CMS__Global__Smtp__Password: a2tpbjZ6THVXSlJ2M2ppUzhlTTJWNTlU
|
||||
Umbraco__CMS__Global__Smtp__Port: MjUyNQ==
|
||||
Umbraco__CMS__Global__Smtp__Username: dWthZC1kZXY=
|
||||
|
||||
|
||||
settings:
|
||||
ASPNETCORE_ENVIRONMENT: "Production"
|
||||
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: "false"
|
||||
VIRTUAL_HOST: ""
|
||||
AppSettings:
|
||||
Recaptcha:
|
||||
SecretKey: ""
|
||||
SiteKey:
|
||||
ConnectionStrings:
|
||||
umbraocDbDSN: ""
|
||||
Umbraco:
|
||||
CMS:
|
||||
Global:
|
||||
Smtp:
|
||||
From: ""
|
||||
Host: ""
|
||||
Password: ""
|
||||
Port: 587
|
||||
Username: ""
|
||||
Storage:
|
||||
AzureBlob:
|
||||
Media:
|
||||
ConnectionString:
|
||||
ContainerName: ""
|
||||
CDN:
|
||||
REMOVEMEDIAFROMPATH: "true"
|
||||
URL: ""
|
||||
|
||||
|
||||
|
||||
resources:
|
||||
cpu:
|
||||
peak: 1000m
|
||||
avg: 500m
|
||||
mem:
|
||||
peak: 1Gi
|
||||
avg: 500Mi
|
||||
storage: 5Gi
|
||||
|
||||
domain: "customerdomain.tld"
|
||||
additionalDomains: []
|
||||
|
||||
secrets: []
|
||||
# - name: "abc-secret
|
||||
# type: "env" | "file" | "docker"
|
||||
# values:
|
||||
# - name: "SMTP_USER"
|
||||
# value: |
|
||||
# Hello World
|
||||
configMaps: []
|
||||
# - name: "abc-configmap"
|
||||
# type: "file" | "env"
|
||||
# values:
|
||||
# - name: "SMTP_USER"
|
||||
# value: |
|
||||
# Hello World
|
||||
externalSecrets: []
|
||||
# - name: "ex-gl-secret"
|
||||
# type: "env"
|
||||
# ref:
|
||||
# secretStore: ""
|
||||
# clusterSecretStore: "az-cluster-store"
|
||||
# target: "global-secrets"
|
||||
# items:
|
||||
# - source: secret/SMTP-USER
|
||||
# target: SMTP_USER
|
||||
# - source: secret/SMTP-PASSWORD
|
||||
# target: SMTP_PASS
|
||||
# - source: secret/SMTP-HOST
|
||||
# target: SMTP_HOST
|
||||
# - name: "ex-pull-secret"
|
||||
# type: "docker"
|
||||
# ref:
|
||||
# secretStore: ""
|
||||
# secretStoreNamespace: ""
|
||||
# clusterSecretStore: "az-cluster-store"
|
||||
# target: "pull-secret"
|
||||
# items:
|
||||
# - source: secret/PULL-TOKEN
|
||||
# target: dockerconfigjson
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user