Enables CPU/memory visibility in k9s and kubectl top by deploying the Kubernetes metrics-server via the metrics.k8s.io API. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
85 lines
2.4 KiB
YAML
85 lines
2.4 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
a8r.io/repository: ssh://git@git.tr1ceracop.de:222/gitea_admin/k8s-and-chill.git
|
|
labels:
|
|
app.kubernetes.io/instance: metrics-server
|
|
app.kubernetes.io/managed-by: Helm
|
|
app.kubernetes.io/name: metrics-server
|
|
app.kubernetes.io/version: 0.7.2
|
|
helm.sh/chart: metrics-server-3.12.2
|
|
name: metrics-server
|
|
namespace: kube-system
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/instance: metrics-server
|
|
app.kubernetes.io/name: metrics-server
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/instance: metrics-server
|
|
app.kubernetes.io/name: metrics-server
|
|
spec:
|
|
containers:
|
|
- args:
|
|
- --secure-port=10250
|
|
- --cert-dir=/tmp
|
|
- --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
|
|
- --kubelet-use-node-status-port
|
|
- --metric-resolution=15s
|
|
- --kubelet-insecure-tls
|
|
image: registry.k8s.io/metrics-server/metrics-server:v0.7.2
|
|
imagePullPolicy: IfNotPresent
|
|
livenessProbe:
|
|
failureThreshold: 3
|
|
httpGet:
|
|
path: /livez
|
|
port: https
|
|
scheme: HTTPS
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
name: metrics-server
|
|
ports:
|
|
- containerPort: 10250
|
|
name: https
|
|
protocol: TCP
|
|
readinessProbe:
|
|
failureThreshold: 3
|
|
httpGet:
|
|
path: /readyz
|
|
port: https
|
|
scheme: HTTPS
|
|
initialDelaySeconds: 20
|
|
periodSeconds: 10
|
|
resources:
|
|
limits:
|
|
memory: 64Mi
|
|
requests:
|
|
cpu: 10m
|
|
memory: 32Mi
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
readOnlyRootFilesystem: true
|
|
runAsNonRoot: true
|
|
runAsUser: 1000
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
volumeMounts:
|
|
- mountPath: /tmp
|
|
name: tmp
|
|
priorityClassName: system-cluster-critical
|
|
serviceAccountName: metrics-server
|
|
tolerations:
|
|
- effect: NoSchedule
|
|
key: node-role.kubernetes.io/control-plane
|
|
operator: Exists
|
|
volumes:
|
|
- emptyDir: {}
|
|
name: tmp
|