mirror of
https://github.com/nold360/hive-apps
synced 2024-11-09 23:36:38 +00:00
update(redis-operator)
This commit is contained in:
parent
3525ff8793
commit
01312d9e15
2 changed files with 11 additions and 41 deletions
|
@ -28,4 +28,4 @@ apps:
|
||||||
repoURL: https://ot-container-kit.github.io/helm-charts
|
repoURL: https://ot-container-kit.github.io/helm-charts
|
||||||
namespace: redis-operator
|
namespace: redis-operator
|
||||||
chart: redis-operator
|
chart: redis-operator
|
||||||
targetRevision: 0.15.9
|
targetRevision: 0.16.4
|
||||||
|
|
|
@ -4,67 +4,37 @@
|
||||||
|
|
||||||
# Name of the image repository to pull the container image from.
|
# Name of the image repository to pull the container image from.
|
||||||
image:
|
image:
|
||||||
repository: quay.io/spotahome/redis-operator
|
repository: ghcr.io/ot-container-kit/redis-operator/redis-operator
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: v1.2.4
|
#tag: v1.2.4
|
||||||
|
|
||||||
imageCredentials:
|
imageCredentials:
|
||||||
create: false
|
create: false
|
||||||
registry: url.private.registry
|
|
||||||
username: someone
|
|
||||||
password: somepassword
|
|
||||||
email: someone@example.com
|
|
||||||
# Use exists secrets in namespace
|
|
||||||
existsSecrets:
|
|
||||||
- registrysecret
|
|
||||||
|
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
type: RollingUpdate
|
type: RollingUpdate
|
||||||
|
|
||||||
replicas: 1
|
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:
|
securityContext:
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
runAsUser: 1000
|
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:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 10m
|
cpu: 10m
|
||||||
memory: 16Mi
|
memory: 16Mi
|
||||||
limits:
|
limits:
|
||||||
cpu: 100m
|
cpu: 500m
|
||||||
memory: 128Mi
|
memory: 500Mi
|
||||||
|
|
||||||
|
certificate:
|
||||||
|
secretName: redis-operator-tls
|
||||||
|
|
||||||
|
certmanager:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
### Monitoring
|
|
||||||
###############
|
|
||||||
monitoring:
|
monitoring:
|
||||||
# Enable Prometheus PodMonitor to monitor the operator.
|
# Enable Prometheus PodMonitor to monitor the operator.
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Reference in a new issue