-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Dustin Kaiser <[email protected]>
- Loading branch information
1 parent
bf07520
commit b26cc7a
Showing
4 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Default values for adminer. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
|
||
replicaCount: 1 | ||
|
||
image: | ||
repository: portainer/portainer-ce | ||
pullPolicy: IfNotPresent | ||
|
||
imagePullSecrets: [] | ||
nameOverride: "" | ||
fullnameOverride: "" | ||
|
||
serviceAccount: | ||
# Annotations to add to the service account | ||
annotations: {} | ||
# The name of the service account to use. | ||
# If not set and create is true, a name is generated using the fullname template | ||
name: portainer-sa-clusteradmin | ||
|
||
podAnnotations: {} | ||
podLabels: {} | ||
|
||
podSecurityContext: | ||
{} | ||
|
||
securityContext: | ||
{} | ||
|
||
service: | ||
type: "ClusterIP" | ||
port: 9000 | ||
|
||
ingress: | ||
enabled: true | ||
className: "" | ||
annotations: | ||
namespace: {{ .Release.Namespace }} | ||
cert-manager.io/cluster-issuer: "cert-issuer" | ||
traefik.ingress.kubernetes.io/router.entrypoints: websecure | ||
traefik.ingress.kubernetes.io/router.middlewares: traefik-traefik-basic-auth@kubernetescrd,traefik-portainer-strip-prefix@kubernetescrd # namespace + middleware name | ||
tls: | ||
- hosts: | ||
- {{ requiredEnv "K8S_MONITORING_FQDN" }} | ||
secretName: monitoring-tls | ||
hosts: | ||
- host: {{ requiredEnv "K8S_MONITORING_FQDN" }} | ||
paths: | ||
- path: /portainer | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: portainer | ||
port: | ||
number: 9000 | ||
|
||
|
||
resources: | ||
limits: | ||
cpu: 2 | ||
memory: 1024Mi | ||
requests: | ||
cpu: 0.1 | ||
memory: 128Mi | ||
|
||
nodeSelector: | ||
ops: "true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters