Started creating chart
This commit is contained in:
@@ -1,63 +1,128 @@
|
||||
replicaCount: 1
|
||||
# Customer Information
|
||||
customer:
|
||||
|
||||
image:
|
||||
repository: ghcr.io/cloudynes/php-nginx
|
||||
tag: latest
|
||||
pullPolicy: Always
|
||||
# Customer Name/identifier
|
||||
name: gunnarnilssonmaskin
|
||||
|
||||
initImage:
|
||||
repository: ghcr.io/cloudynes/php-init
|
||||
tag: latest
|
||||
pullPolicy: Always
|
||||
# Timezone for customer
|
||||
timezone: "Europe/Stockholm"
|
||||
|
||||
# Namespace
|
||||
customerName: gunnarnilssonmaskin
|
||||
# Package/Resource Settings
|
||||
package:
|
||||
size: small
|
||||
replicas: 1
|
||||
cpu:
|
||||
avg: 500m
|
||||
peak: 1000m
|
||||
mem:
|
||||
avg: 512Mi
|
||||
peak: 1Gi
|
||||
disk: 5Gi
|
||||
|
||||
# Site
|
||||
siteUrl: www.gunnarnilssonmaskin.se
|
||||
allowedDomains:
|
||||
- "www.gunnarnilssonmaskin.se"
|
||||
- "gunnarnilssonmaskin.se"
|
||||
- "gunnarnilssonmaskin-se.eu.cust.azurecd.net"
|
||||
- "www.gunnarnilssonmaskin-se.eu.cust.azurecd.net"
|
||||
# Website Configuration
|
||||
site:
|
||||
# The main URL for the website
|
||||
url: "www.gunnarnilssonmaskin.se"
|
||||
|
||||
# Storage
|
||||
azureStorageContainer: ""
|
||||
azureStorageTier: "premium01-persistent"
|
||||
# Settings for the webroot (used by Nginx)
|
||||
webroot:
|
||||
path: "/app/web"
|
||||
indexes: "index.php index.html index.htm"
|
||||
|
||||
# Initial Import
|
||||
initSettings:
|
||||
RUN_COMPOSER: "true"
|
||||
INSTALL_SITE: "buildahome/gunnarnilssonmaskin-se"
|
||||
RUN_IMPORTS: "true"
|
||||
IMPORT_CONTENT: "https://www.gunnarnilssonmaskin.se/gunnar.sql"
|
||||
RUN_DATABASEIMPORTS: "true"
|
||||
IMPORT_DATABASE: "https://www.gunnarnilssonmaskin.se/gunnar.sql"
|
||||
FORCE_IMPORT_DB: "false"
|
||||
SET_THEME: "gunnarnilssonmaskin-se-theme"
|
||||
# Whether to keep plugins and Wordpress updated
|
||||
autoUpdate: true
|
||||
|
||||
cloudFolders:
|
||||
- name: uploads
|
||||
cloudPath: uploads
|
||||
containerPath: /app/web/app/uploads
|
||||
- name: gallery
|
||||
cloudPath: gallery
|
||||
containerPath: /app/web/app/gallery
|
||||
- name: sqldump
|
||||
cloudPath: sqldump
|
||||
containerPath: /sqldump
|
||||
# Initialization Settings
|
||||
init:
|
||||
# The composer package that contains the site
|
||||
composerPackage: "buildahome/gunnarnilssonmaskin-se"
|
||||
|
||||
package:
|
||||
size: small
|
||||
persistentVolume: 5Gi
|
||||
request:
|
||||
cpu: 500m
|
||||
memory: 512Mi
|
||||
limit:
|
||||
cpu: 1
|
||||
memory: 1Gi
|
||||
# The name of the theme which the composer package refers to
|
||||
themeName: "gunnarnilssonmaskin-se-theme"
|
||||
|
||||
database:
|
||||
instance: kincaid
|
||||
deletionProtected: true
|
||||
# Import content to wp-content directory from zip file
|
||||
content:
|
||||
import: true
|
||||
url: "https://www.gunnarnilssonmaskin.se/gunnar.zip"
|
||||
|
||||
# # Import database from URL
|
||||
# database:
|
||||
# import: true
|
||||
# force: false
|
||||
# url: "https://www.gunnarnilssonmaskin.se/gunnar.sql"
|
||||
|
||||
# The allowed names for ingress to this site
|
||||
ingressNames:
|
||||
- "gunnarnilssonmaskin.se"
|
||||
- "www.gunnarnilssonmaskin.se"
|
||||
- "gunnarnilssonmaskin-se.eu.cust.azurecd.net"
|
||||
- "www-gunnarnilssonmaskin-se.eu.cust.azurecd.net"
|
||||
|
||||
# Storage settings
|
||||
storage:
|
||||
|
||||
# Settings for cloud storage
|
||||
cloud:
|
||||
# Storage class to use for the cloud storage
|
||||
class: "premium01"
|
||||
type: "Premium_LRS"
|
||||
|
||||
# The container in Azure storage
|
||||
container: "gunnarnilssonmaskin-se"
|
||||
|
||||
# Folders to map up to the Azure storage
|
||||
folders:
|
||||
- cloudPath: "uploads"
|
||||
localPath: "/app/web/app/uploads"
|
||||
- cloudyPath: "gallery"
|
||||
localPath: "/app/web/app/uploads"
|
||||
|
||||
# Global configuration
|
||||
global:
|
||||
# Which image to use for the web server
|
||||
serverImage: ghcr.io/cloudynes/php-nginx
|
||||
|
||||
# Which image to use for the initialization
|
||||
initImage: ghcr.io/cloudynes/php-init
|
||||
|
||||
# The tag to use for the above images
|
||||
imageTag: latest
|
||||
|
||||
# The database instance where the database will be provisioned
|
||||
dbInstance: "kincaid"
|
||||
|
||||
php:
|
||||
listenAddress: "127.0.0.1:8123"
|
||||
listenBacklog: "511"
|
||||
|
||||
pmMode: "ondemand"
|
||||
pmMaxChildren: "100"
|
||||
pmProcessIdle: "30s"
|
||||
pmMaxRequests: "1000"
|
||||
|
||||
limitExtensions: ".php"
|
||||
exposePHP: "Off"
|
||||
shortOpenTag": "Off"
|
||||
disableFunctions: "exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,show_source"
|
||||
logErrors: "On"
|
||||
|
||||
adminValues:
|
||||
upload_max_filesize: "256M"
|
||||
post_max_size: "256M"
|
||||
|
||||
nginx:
|
||||
workerConnections: "1024"
|
||||
keepaliveTimeout: "61"
|
||||
sendfile: "off"
|
||||
tcpNodelay: "on"
|
||||
absoluteRedirects: "off"
|
||||
fcgiBufferSize: "128k"
|
||||
fcgiBuffers: "4 256k"
|
||||
fcgiBusyBufferSize: "256k"
|
||||
fcgiReadTimeout: "300"
|
||||
globalAdditions: ""
|
||||
eventsAdditions: ""
|
||||
httpAdditions: ""
|
||||
serverAdditions: ""
|
||||
rootLocationAdditions: ""
|
||||
phpLocationAdditions: ""
|
||||
Reference in New Issue
Block a user