47 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
ingress:
 | 
						|
  enabled: true
 | 
						|
  className: nginx
 | 
						|
  hosts:
 | 
						|
    - host: toot.martyn.berlin
 | 
						|
      paths:
 | 
						|
        - path: /
 | 
						|
          pathType: ImplementationSpecific
 | 
						|
  tls:
 | 
						|
    - hosts:
 | 
						|
        - toot.martyn.berlin
 | 
						|
mastodon:
 | 
						|
  local_domain: toot.martyn.berlin
 | 
						|
  initialUser:
 | 
						|
    enabled: false
 | 
						|
  removeMedia:
 | 
						|
    enabled: true
 | 
						|
    schedule: 0 0 * * 0
 | 
						|
  databaseBackup:
 | 
						|
    enabled: false
 | 
						|
  sidekiq:
 | 
						|
    replicas: 0
 | 
						|
  secrets:
 | 
						|
    existingSecret: masto-secrets
 | 
						|
    active_record_encryption_deterministic_key: externalSecret
 | 
						|
    active_record_encryption_key_derivation_salt: externalSecret
 | 
						|
    active_record_encryption_primary_key: externalSecret
 | 
						|
  storage:
 | 
						|
    type: emptyDir
 | 
						|
  postgresql:
 | 
						|
    host: masto-postgres
 | 
						|
    existingSecret: masto-db-secret
 | 
						|
    auth:
 | 
						|
      username: masto
 | 
						|
      password: externalSecret
 | 
						|
  redis:
 | 
						|
    host: redis4masto
 | 
						|
    database: '0'
 | 
						|
    auth:
 | 
						|
      username: nousername
 | 
						|
      password: replacewithkustomize
 | 
						|
  smtp:
 | 
						|
    server: mailhog4masto
 | 
						|
    port: 25
 | 
						|
    enable_starttls: 'false'
 | 
						|
postgresql:
 | 
						|
  existingSecret: masto-db-secret
 |