fix
This commit is contained in:
@@ -65,7 +65,7 @@ data "kustomization_overlay" "data" {
|
||||
containers:
|
||||
- name: authentik
|
||||
image: "${var.images.app.registry}/${var.images.app.repository}:${var.images.app.tag}"
|
||||
imagePullPolicy: "${var.images.app.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.app.pull_policy}"
|
||||
env:
|
||||
- name: "AUTHENTIK_POSTGRESQL__HOST"
|
||||
value: "${var.instance}-${var.component}-pool.${var.namespace}.svc"
|
||||
@@ -97,7 +97,7 @@ data "kustomization_overlay" "data" {
|
||||
containers:
|
||||
- name: authentik
|
||||
image: "${var.images.app.registry}/${var.images.app.repository}:${var.images.app.tag}"
|
||||
imagePullPolicy: "${var.images.app.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.app.pull_policy}"
|
||||
env:
|
||||
- name: "AUTHENTIK_POSTGRESQL__HOST"
|
||||
value: "${var.instance}-${var.component}-pool.${var.namespace}.svc"
|
||||
|
||||
@@ -35,7 +35,7 @@ options:
|
||||
default:
|
||||
app:
|
||||
project: goauthentik
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: ghcr.io
|
||||
repository: goauthentik/server
|
||||
tag: 2023.8.3
|
||||
@@ -44,19 +44,19 @@ options:
|
||||
repository: cloudnative-pg/postgresql
|
||||
tag: 15.3
|
||||
redis:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
redis_exporter:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis-exporter
|
||||
tag: v1.44.0
|
||||
examples:
|
||||
- app:
|
||||
project: goauthentik
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: ghcr.io
|
||||
repository: goauthentik/server
|
||||
tag: 2023.8.3
|
||||
@@ -65,12 +65,12 @@ options:
|
||||
repository: cloudnative-pg/postgresql
|
||||
tag: 15.3
|
||||
redis:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
redis_exporter:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis-exporter
|
||||
tag: v1.44.0
|
||||
@@ -78,7 +78,7 @@ options:
|
||||
app:
|
||||
default:
|
||||
project: goauthentik
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: ghcr.io
|
||||
repository: goauthentik/server
|
||||
tag: 2023.8.3
|
||||
@@ -86,7 +86,7 @@ options:
|
||||
project:
|
||||
default: goauthentik
|
||||
type: string
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -121,12 +121,12 @@ options:
|
||||
type: object
|
||||
redis:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -145,12 +145,12 @@ options:
|
||||
type: object
|
||||
redis_exporter:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis-exporter
|
||||
tag: v1.44.0
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
|
||||
@@ -9,7 +9,7 @@ resource "kubectl_manifest" "authentik_redis" {
|
||||
spec:
|
||||
kubernetesConfig:
|
||||
image: "${var.images.redis.registry}/${var.images.redis.repository}:${var.images.redis.tag}"
|
||||
imagePullPolicy: "${var.images.redis.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.redis.pull_policy}"
|
||||
redisSecret:
|
||||
name: "${var.component}"
|
||||
key: "AUTHENTIK_REDIS__PASSWORD"
|
||||
|
||||
@@ -14,25 +14,25 @@ options:
|
||||
images:
|
||||
default:
|
||||
mariadb:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: mariadb
|
||||
tag: 10.7.4
|
||||
examples:
|
||||
- mariadb:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: mariadb
|
||||
tag: 10.7.4
|
||||
properties:
|
||||
mariadb:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: mariadb
|
||||
tag: 10.7.4
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
|
||||
@@ -41,7 +41,7 @@ resource "kubectl_manifest" "prj_mariadb" {
|
||||
labels: ${jsonencode(local.maria-labels)}
|
||||
spec:
|
||||
image: "${var.images.mariadb.registry}/${var.images.mariadb.repository}:${var.images.mariadb.tag}"
|
||||
imagePullPolicy: "${var.images.mariadb.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.mariadb.pull_policy}"
|
||||
rootPasswordSecretKeyRef:
|
||||
key: root-password
|
||||
name: "${var.instance}-${var.component}"
|
||||
|
||||
@@ -49,11 +49,11 @@ options:
|
||||
type: object
|
||||
image:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
examples:
|
||||
- pullPolicy: IfNotPresent
|
||||
- pull_policy: IfNotPresent
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
|
||||
@@ -51,7 +51,7 @@ resource "kubectl_manifest" "prj_mongo" {
|
||||
spec:
|
||||
containers:
|
||||
- name: mongod
|
||||
imagePullPolicy: "${var.image.pullPolicy}"
|
||||
imagePullPolicy: "${var.image.pull_policy}"
|
||||
resources:
|
||||
limits:
|
||||
cpu: "${var.ressources.limits.cpu}"
|
||||
|
||||
@@ -155,7 +155,7 @@ resource "kubectl_manifest" "directus_deploy" {
|
||||
- configMapRef:
|
||||
name: "${var.component}-${var.instance}-directus"
|
||||
image: "${var.extentions.directus.image.registry}/${var.extentions.directus.image.repository}:${var.extentions.directus.image.tag}"
|
||||
imagePullPolicy: "${var.extentions.directus.image.pullPolicy}"
|
||||
imagePullPolicy: "${var.extentions.directus.image.pull_policy}"
|
||||
ports:
|
||||
- containerPort: 8055
|
||||
name: http
|
||||
|
||||
@@ -140,7 +140,7 @@ options:
|
||||
directus:
|
||||
enable: false
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: directus/directus
|
||||
tag: 10.7.0
|
||||
@@ -153,13 +153,13 @@ options:
|
||||
postgrest:
|
||||
enable: false
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: postgrest/postgrest
|
||||
tag: v11.2.1
|
||||
swagger:
|
||||
enable: true
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: swaggerapi/swagger-ui
|
||||
tag: v5.9.0
|
||||
@@ -167,7 +167,7 @@ options:
|
||||
- directus:
|
||||
enable: false
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: directus/directus
|
||||
tag: 10.7.0
|
||||
@@ -180,13 +180,13 @@ options:
|
||||
postgrest:
|
||||
enable: false
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: postgrest/postgrest
|
||||
tag: v11.2.1
|
||||
swagger:
|
||||
enable: true
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: swaggerapi/swagger-ui
|
||||
tag: v5.9.0
|
||||
@@ -195,7 +195,7 @@ options:
|
||||
default:
|
||||
enable: false
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: directus/directus
|
||||
tag: 10.7.0
|
||||
@@ -209,12 +209,12 @@ options:
|
||||
type: boolean
|
||||
image:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: directus/directus
|
||||
tag: 10.7.0
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
type: string
|
||||
registry:
|
||||
@@ -256,13 +256,13 @@ options:
|
||||
default:
|
||||
enable: false
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: postgrest/postgrest
|
||||
tag: v11.2.1
|
||||
swagger:
|
||||
enable: true
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: swaggerapi/swagger-ui
|
||||
tag: v5.9.0
|
||||
@@ -272,12 +272,12 @@ options:
|
||||
type: boolean
|
||||
image:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: postgrest/postgrest
|
||||
tag: v11.2.1
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
type: string
|
||||
registry:
|
||||
@@ -293,7 +293,7 @@ options:
|
||||
swagger:
|
||||
default:
|
||||
enable: true
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: swaggerapi/swagger-ui
|
||||
tag: v5.9.0
|
||||
@@ -301,7 +301,7 @@ options:
|
||||
enable:
|
||||
default: true
|
||||
type: boolean
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
type: string
|
||||
registry:
|
||||
|
||||
@@ -84,7 +84,7 @@ resource "kubectl_manifest" "postgrest_deploy" {
|
||||
- configMapRef:
|
||||
name: "${var.component}-${var.instance}-postgrest"
|
||||
image: "${var.extentions.postgrest.image.registry}/${var.extentions.postgrest.image.repository}:${var.extentions.postgrest.image.tag}"
|
||||
imagePullPolicy: "${var.extentions.postgrest.image.pullPolicy}"
|
||||
imagePullPolicy: "${var.extentions.postgrest.image.pull_policy}"
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
name: http
|
||||
@@ -119,7 +119,7 @@ EOF
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
image: "${var.extentions.postgrest.swagger.registry}/${var.extentions.postgrest.swagger.repository}:${var.extentions.postgrest.swagger.tag}"
|
||||
imagePullPolicy: "${var.extentions.postgrest.swagger.pullPolicy}"
|
||||
imagePullPolicy: "${var.extentions.postgrest.swagger.pull_policy}"
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
name: swagger
|
||||
|
||||
@@ -60,25 +60,25 @@ options:
|
||||
images:
|
||||
default:
|
||||
rabbit:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: rabbitmq
|
||||
tag: 3.10.2-management
|
||||
examples:
|
||||
- rabbit:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: rabbitmq
|
||||
tag: 3.10.2-management
|
||||
properties:
|
||||
rabbit:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: rabbitmq
|
||||
tag: 3.10.2-management
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
|
||||
@@ -19,7 +19,7 @@ options:
|
||||
images:
|
||||
default:
|
||||
redis:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
@@ -29,7 +29,7 @@ options:
|
||||
tag: v1.44.0
|
||||
examples:
|
||||
- redis:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
@@ -40,12 +40,12 @@ options:
|
||||
properties:
|
||||
redis:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
|
||||
@@ -14,7 +14,7 @@ resource "kubectl_manifest" "prj_redis" {
|
||||
spec:
|
||||
kubernetesConfig:
|
||||
image: "${var.images.redis.registry}/${var.images.redis.repository}:${var.images.redis.tag}"
|
||||
imagePullPolicy: "${var.images.redis.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.redis.pull_policy}"
|
||||
storage:
|
||||
volumeClaimTemplate:
|
||||
spec:
|
||||
|
||||
@@ -42,7 +42,7 @@ data "kustomization_overlay" "data" {
|
||||
containers:
|
||||
- name: coredns
|
||||
image: "${var.image.registry}/${var.image.repository}:${var.image.tag}"
|
||||
imagePullPolicy: "${var.image.pullPolicy}"
|
||||
imagePullPolicy: "${var.image.pull_policy}"
|
||||
volumes:
|
||||
- name: config-volume
|
||||
configMap:
|
||||
|
||||
@@ -76,17 +76,17 @@ options:
|
||||
type: string
|
||||
image:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: coredns/coredns
|
||||
tag: 1.11.1
|
||||
examples:
|
||||
- pullPolicy: IfNotPresent
|
||||
- pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: coredns/coredns
|
||||
tag: 1.11.1
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
|
||||
@@ -32,7 +32,7 @@ resource "kubectl_manifest" "haraka_deploy" {
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
image: "${var.images.haraka.registry}/${var.images.haraka.repository}:${var.images.haraka.tag}"
|
||||
imagePullPolicy: "${var.images.haraka.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.haraka.pull_policy}"
|
||||
ports:
|
||||
- name: smtp
|
||||
containerPort: 2500
|
||||
|
||||
@@ -86,95 +86,95 @@ options:
|
||||
images:
|
||||
default:
|
||||
haraka:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-haraka
|
||||
tag: 3.0.2
|
||||
redis:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
redis_exporter:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis-exporter
|
||||
tag: v1.44.0
|
||||
rspamd:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-rspamd
|
||||
tag: 3.18.3
|
||||
scimgateway:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-scim
|
||||
tag: 1.0.0
|
||||
webmail:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-webmail
|
||||
tag: 1.0.1
|
||||
wildduck:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: nodemailer/wildduck
|
||||
tag: 1.39.10
|
||||
zonemta:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-zonemta
|
||||
tag: 3.4.0
|
||||
examples:
|
||||
- haraka:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-haraka
|
||||
tag: 3.0.2
|
||||
redis:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
redis_exporter:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis-exporter
|
||||
tag: v1.44.0
|
||||
rspamd:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-rspamd
|
||||
tag: 3.18.3
|
||||
scimgateway:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-scim
|
||||
tag: 1.0.0
|
||||
webmail:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-webmail
|
||||
tag: 1.0.1
|
||||
wildduck:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: nodemailer/wildduck
|
||||
tag: 1.39.10
|
||||
zonemta:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-zonemta
|
||||
tag: 3.4.0
|
||||
properties:
|
||||
haraka:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-haraka
|
||||
tag: 3.0.2
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -193,12 +193,12 @@ options:
|
||||
type: object
|
||||
redis:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis
|
||||
tag: v7.0.12
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -217,12 +217,12 @@ options:
|
||||
type: object
|
||||
redis_exporter:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: quay.io
|
||||
repository: opstree/redis-exporter
|
||||
tag: v1.44.0
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -241,12 +241,12 @@ options:
|
||||
type: object
|
||||
rspamd:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-rspamd
|
||||
tag: 3.18.3
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -265,12 +265,12 @@ options:
|
||||
type: object
|
||||
scimgateway:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-scim
|
||||
tag: 1.0.0
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -289,12 +289,12 @@ options:
|
||||
type: object
|
||||
webmail:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-webmail
|
||||
tag: 1.0.1
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -313,12 +313,12 @@ options:
|
||||
type: object
|
||||
wildduck:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: nodemailer/wildduck
|
||||
tag: 1.39.10
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
@@ -337,12 +337,12 @@ options:
|
||||
type: object
|
||||
zonemta:
|
||||
default:
|
||||
pullPolicy: IfNotPresent
|
||||
pull_policy: IfNotPresent
|
||||
registry: docker.io
|
||||
repository: sebt3/wildduck-zonemta
|
||||
tag: 3.4.0
|
||||
properties:
|
||||
pullPolicy:
|
||||
pull_policy:
|
||||
default: IfNotPresent
|
||||
enum:
|
||||
- Always
|
||||
|
||||
@@ -51,7 +51,7 @@ resource "kubectl_manifest" "prj_mongo" {
|
||||
spec:
|
||||
containers:
|
||||
- name: mongod
|
||||
imagePullPolicy: "${var.images.webmail.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.webmail.pull_policy}"
|
||||
resources:
|
||||
limits:
|
||||
cpu: "1"
|
||||
|
||||
@@ -14,7 +14,7 @@ resource "kubectl_manifest" "prj_redis" {
|
||||
spec:
|
||||
kubernetesConfig:
|
||||
image: "${var.images.redis.registry}/${var.images.redis.repository}:${var.images.redis.tag}"
|
||||
imagePullPolicy: "${var.images.redis.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.redis.pull_policy}"
|
||||
storage:
|
||||
volumeClaimTemplate:
|
||||
spec:
|
||||
|
||||
@@ -32,7 +32,7 @@ resource "kubectl_manifest" "rspamd_deploy" {
|
||||
runAsNonRoot: true
|
||||
runAsUser: 100
|
||||
image: "${var.images.rspamd.registry}/${var.images.rspamd.repository}:${var.images.rspamd.tag}"
|
||||
imagePullPolicy: "${var.images.rspamd.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.rspamd.pull_policy}"
|
||||
ports:
|
||||
- name: rspamd
|
||||
containerPort: 11333
|
||||
|
||||
@@ -32,7 +32,7 @@ resource "kubectl_manifest" "scimgateway_deploy" {
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
image: "${var.images.scimgateway.registry}/${var.images.scimgateway.repository}:${var.images.scimgateway.tag}"
|
||||
imagePullPolicy: "${var.images.scimgateway.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.scimgateway.pull_policy}"
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 8880
|
||||
|
||||
@@ -32,7 +32,7 @@ resource "kubectl_manifest" "webmail_deploy" {
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
image: "${var.images.webmail.registry}/${var.images.webmail.repository}:${var.images.webmail.tag}"
|
||||
imagePullPolicy: "${var.images.webmail.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.webmail.pull_policy}"
|
||||
args:
|
||||
- "--config=./config/webmail.toml"
|
||||
ports:
|
||||
|
||||
@@ -32,7 +32,7 @@ resource "kubectl_manifest" "wildduck_deploy" {
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
image: "${var.images.wildduck.registry}/${var.images.wildduck.repository}:${var.images.wildduck.tag}"
|
||||
imagePullPolicy: "${var.images.wildduck.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.wildduck.pull_policy}"
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 8000
|
||||
|
||||
@@ -32,7 +32,7 @@ resource "kubectl_manifest" "zonemta_deploy" {
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
image: "${var.images.zonemta.registry}/${var.images.zonemta.repository}:${var.images.zonemta.tag}"
|
||||
imagePullPolicy: "${var.images.zonemta.pullPolicy}"
|
||||
imagePullPolicy: "${var.images.zonemta.pull_policy}"
|
||||
ports:
|
||||
- name: smtp
|
||||
containerPort: 5870
|
||||
|
||||
Reference in New Issue
Block a user