-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
55 lines (46 loc) · 1.36 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# * Copyright (c) 2021, arivum.
# * All rights reserved.
# * SPDX-License-Identifier: MIT
# * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
replicaCount: 1
appname: dynratelimiter-operator
# specify the target namespace for deploying the operator
namespace: dynratelimiter-operator
# specify which image and tag should be used to deploy the operator
image:
repository: ghcr.io/arivum/dynratelimiter/dynratelimiter-operator
tag: latest
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
# specify logging options
logging:
# loglevel must be one of [info, debug, warn, error, trace].
# default: info
level: info
# format can be one of [gofmt, json]
# default: gofmt
format: gofmt
# configure operator specificy
mutationConfig:
# specify an image to inject into initContainers of the target pods.
# the dynratelimiter binary will be copied from this initContainer into all the containers inside the target pods.
image: ghcr.io/arivum/dynratelimiter/dynratelimiter
tag: latest
# specify kubernetes service options
service:
type: ClusterIP
port: 443
targetPort: 8443
# specify resource limits and requests
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}