mirror of
https://github.com/nold360/hive-apps
synced 2025-01-05 13:07:56 +00:00
add(redis-operator)
This commit is contained in:
parent
363ac2e70c
commit
c81ba151cc
2 changed files with 79 additions and 0 deletions
|
@ -23,3 +23,8 @@ apps:
|
||||||
repoURL: https://cloudnative-pg.github.io/charts
|
repoURL: https://cloudnative-pg.github.io/charts
|
||||||
chart: cloudnative-pg
|
chart: cloudnative-pg
|
||||||
targetRevision: 0.18.1
|
targetRevision: 0.18.1
|
||||||
|
|
||||||
|
- name: redis-operator
|
||||||
|
repoURL: https://spotahome.github.io/redis-operator
|
||||||
|
chart: redis-operator
|
||||||
|
targetRevision: 3.2.8
|
||||||
|
|
74
projects/services/values/redis-operator.yaml
Normal file
74
projects/services/values/redis-operator.yaml
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
# Default values for redis-operator.
|
||||||
|
# This is a YAML-formatted file.
|
||||||
|
# Declare variables to be passed into your templates.
|
||||||
|
|
||||||
|
# Name of the image repository to pull the container image from.
|
||||||
|
image:
|
||||||
|
repository: quay.io/spotahome/redis-operator
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
tag: v1.2.4
|
||||||
|
|
||||||
|
imageCredentials:
|
||||||
|
create: false
|
||||||
|
registry: url.private.registry
|
||||||
|
username: someone
|
||||||
|
password: somepassword
|
||||||
|
email: someone@example.com
|
||||||
|
# Use exists secrets in namespace
|
||||||
|
existsSecrets:
|
||||||
|
- registrysecret
|
||||||
|
|
||||||
|
updateStrategy:
|
||||||
|
type: RollingUpdate
|
||||||
|
|
||||||
|
replicas: 1
|
||||||
|
|
||||||
|
# A name in place of the chart name for `app:` labels.
|
||||||
|
nameOverride: ""
|
||||||
|
|
||||||
|
# A name to substitute for the full names of resources.
|
||||||
|
fullnameOverride: ""
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
# Enable service account creation.
|
||||||
|
create: true
|
||||||
|
# Annotations to be added 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: ""
|
||||||
|
|
||||||
|
service:
|
||||||
|
type: ClusterIP
|
||||||
|
port: 9710
|
||||||
|
|
||||||
|
container:
|
||||||
|
port: 9710
|
||||||
|
|
||||||
|
# Container [security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container).
|
||||||
|
# See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context-1) for details.
|
||||||
|
securityContext:
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
runAsNonRoot: true
|
||||||
|
runAsUser: 1000
|
||||||
|
|
||||||
|
# Container resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
|
||||||
|
# See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) for details.
|
||||||
|
# @default -- No requests or limits.
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 16Mi
|
||||||
|
limits:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 128Mi
|
||||||
|
|
||||||
|
### Monitoring
|
||||||
|
###############
|
||||||
|
monitoring:
|
||||||
|
# Enable Prometheus PodMonitor to monitor the operator.
|
||||||
|
enabled: false
|
||||||
|
serviceMonitor: false
|
||||||
|
serviceAnnotations: {}
|
||||||
|
prometheus:
|
||||||
|
name: unknown
|
Loading…
Reference in a new issue