Automated Manifest Update (#2259)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2259 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
This commit was merged in pull request #2259.
This commit is contained in:
@@ -0,0 +1,124 @@
|
||||
---
|
||||
# Source: loki/charts/loki/templates/chunks-cache/statefulset-chunks-cache.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
name: loki-chunks-cache
|
||||
labels:
|
||||
helm.sh/chart: loki-6.46.0
|
||||
app.kubernetes.io/name: loki
|
||||
app.kubernetes.io/instance: loki
|
||||
app.kubernetes.io/version: "3.5.7"
|
||||
app.kubernetes.io/component: "memcached-chunks-cache"
|
||||
name: "memcached-chunks-cache"
|
||||
annotations: {}
|
||||
namespace: "loki"
|
||||
spec:
|
||||
podManagementPolicy: Parallel
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/name: loki
|
||||
app.kubernetes.io/instance: loki
|
||||
app.kubernetes.io/component: "memcached-chunks-cache"
|
||||
name: "memcached-chunks-cache"
|
||||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
serviceName: loki-chunks-cache
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/name: loki
|
||||
app.kubernetes.io/instance: loki
|
||||
app.kubernetes.io/component: "memcached-chunks-cache"
|
||||
name: "memcached-chunks-cache"
|
||||
annotations:
|
||||
spec:
|
||||
serviceAccountName: loki
|
||||
securityContext:
|
||||
fsGroup: 11211
|
||||
runAsGroup: 11211
|
||||
runAsNonRoot: true
|
||||
runAsUser: 11211
|
||||
initContainers: []
|
||||
nodeSelector: {}
|
||||
affinity: {}
|
||||
topologySpreadConstraints: []
|
||||
tolerations: []
|
||||
terminationGracePeriodSeconds: 60
|
||||
containers:
|
||||
- name: memcached
|
||||
image: memcached:1.6.39-alpine
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
limits:
|
||||
memory: 9830Mi
|
||||
requests:
|
||||
cpu: 500m
|
||||
memory: 9830Mi
|
||||
ports:
|
||||
- containerPort: 11211
|
||||
name: client
|
||||
args:
|
||||
- -m 8192
|
||||
- --extended=modern,track_sizes
|
||||
- -I 5m
|
||||
- -c 16384
|
||||
- -v
|
||||
- -u 11211
|
||||
env:
|
||||
envFrom:
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
readOnlyRootFilesystem: true
|
||||
readinessProbe:
|
||||
failureThreshold: 6
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 5
|
||||
tcpSocket:
|
||||
port: client
|
||||
timeoutSeconds: 3
|
||||
livenessProbe:
|
||||
failureThreshold: 3
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
tcpSocket:
|
||||
port: client
|
||||
timeoutSeconds: 5
|
||||
- name: exporter
|
||||
image: prom/memcached-exporter:v0.15.3
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 9150
|
||||
name: http-metrics
|
||||
args:
|
||||
- "--memcached.address=localhost:11211"
|
||||
- "--web.listen-address=0.0.0.0:9150"
|
||||
resources:
|
||||
limits: {}
|
||||
requests: {}
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
readOnlyRootFilesystem: true
|
||||
readinessProbe:
|
||||
failureThreshold: 3
|
||||
httpGet:
|
||||
path: /metrics
|
||||
port: http-metrics
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 5
|
||||
timeoutSeconds: 3
|
||||
livenessProbe:
|
||||
failureThreshold: 3
|
||||
httpGet:
|
||||
path: /metrics
|
||||
port: http-metrics
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 5
|
||||
Reference in New Issue
Block a user