**Description** Move the following apps to incubator. ``` | Chart Name | Chart Name | Chart Name | | ----------------- | ----------- | -------------------------- | | authentik | darktable | guacamole-client | | cloudflared | dsmr-reader | habridge | | dupeguru | filerun | filezilla | | firefox | flashpaper | focalboard | | gotify | grist | icantbelieveitsnotvaletudo | | icinga2 | inventree | invidious | | joplin-server | k8s-gateway | kimai | | koel | kopia | kutt | | leantime | libreoffice | librephotos | | linkace | loki | lychee | | mattermost | mealie | miniflux | | ml-workspace | mosquitto | nextcloud | | openkm | openldap | penpot | | photoview | pialert | piaware | | pidgin | pihole | plexanisync | | protonmail-bridge | pydio-cells | recipes | | rtmpserver | sdtd | shiori | | snipe-it | statping-ng | synapse | | teamspeak3 | typecho | wbo | | wger | wireshark | zusam | | xbackbone | youtrack | | ``` ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Co-authored-by: xtar97 <dev.xtar97@gmail.com>
134 lines
2.9 KiB
YAML
134 lines
2.9 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/k8s_gateway
|
|
pullPolicy: IfNotPresent
|
|
tag: 0.3.3@sha256:246e7006afaf57a398b02e417a31d6f14fb43562901388772778f60be586b807
|
|
|
|
controller:
|
|
# -- Set additional annotations on the deployment/statefulset/daemonset
|
|
# -- Number of desired pods
|
|
replicas: 2
|
|
# -- Set the controller upgrade strategy
|
|
# For Deployments, valid values are Recreate (default) and RollingUpdate.
|
|
# For StatefulSets, valid values are OnDelete and RollingUpdate (default).
|
|
# DaemonSets ignore this.
|
|
strategy: RollingUpdate
|
|
|
|
securityContext:
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
args: ["-conf", "/etc/coredns/Corefile"]
|
|
|
|
# -- TTL for non-apex responses (in seconds)
|
|
ttl: 300
|
|
|
|
# -- Limit what kind of resources to watch, e.g. watchedResources: ["Ingress"]
|
|
watchedResources: []
|
|
|
|
# -- Service name of a secondary DNS server (should be `serviceName.namespace`)
|
|
secondary: ""
|
|
|
|
# -- Override the default `serviceName.namespace` domain apex
|
|
apex: ""
|
|
|
|
# -- list of processed domains
|
|
domains:
|
|
# -- Delegated domain
|
|
- domain: "example.com"
|
|
# -- Optional configuration option for DNS01 challenge that will redirect all acme
|
|
# challenge requests to external cloud domain (e.g. managed by cert-manager)
|
|
# See: https://cert-manager.io/docs/configuration/acme/dns01/
|
|
dnsChallenge:
|
|
enabled: false
|
|
domain: dns01.clouddns.com
|
|
|
|
forward:
|
|
enabled: true
|
|
primary: tls://1.1.1.1
|
|
secondary: tls://1.0.0.1
|
|
options:
|
|
- name: tls_servername
|
|
value: cloudflare-dns.com
|
|
|
|
serviceAccount:
|
|
main:
|
|
# -- Specifies whether a service account should be created
|
|
enabled: true
|
|
|
|
# -- Create a ClusterRole and ClusterRoleBinding
|
|
# @default -- See below
|
|
rbac:
|
|
main:
|
|
# -- Enables or disables the ClusterRole and ClusterRoleBinding
|
|
enabled: true
|
|
|
|
# -- Set Rules on the ClusterRole
|
|
rules:
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- services
|
|
- namespaces
|
|
verbs:
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- extensions
|
|
- networking.k8s.io
|
|
resources:
|
|
- ingresses
|
|
verbs:
|
|
- list
|
|
- watch
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: UDP
|
|
port: 53
|
|
targetPort: 53
|
|
|
|
probes:
|
|
liveness:
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /health
|
|
port: 8080
|
|
scheme: HTTP
|
|
initialDelaySeconds: 60
|
|
timeoutSeconds: 5
|
|
successThreshold: 1
|
|
failureThreshold: 5
|
|
|
|
readiness:
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /ready
|
|
port: 8181
|
|
scheme: HTTP
|
|
initialDelaySeconds: 10
|
|
timeoutSeconds: 5
|
|
successThreshold: 1
|
|
failureThreshold: 5
|
|
|
|
startup:
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /ready
|
|
port: 8181
|
|
scheme: HTTP
|
|
initialDelaySeconds: 3
|
|
timeoutSeconds: 2
|
|
periodSeconds: 5
|
|
failureThreshold: 60
|
|
|
|
portal:
|
|
enabled: false
|