feat(k8s-ycl): Release 1.0.2

This commit is contained in:
Bernd Schorgers 2023-10-12 12:09:58 +02:00
parent 81cddcb60e
commit a168541d6e
No known key found for this signature in database
GPG key ID: BC5E2BD907F9A8EC
2 changed files with 6 additions and 6 deletions

View file

@ -2,7 +2,7 @@
apiVersion: v2 apiVersion: v2
description: Kubernetes admission controller to remove CPU limits from Pods. description: Kubernetes admission controller to remove CPU limits from Pods.
name: k8s-ycl name: k8s-ycl
version: 1.0.1 version: 1.0.2
appVersion: v0.1.0 appVersion: v0.1.0
kubeVersion: ">=1.22.0-0" kubeVersion: ">=1.22.0-0"
sources: sources:
@ -22,9 +22,9 @@ dependencies:
version: 2.0.3 version: 2.0.3
annotations: annotations:
artifacthub.io/changes: |- artifacthub.io/changes: |-
- kind: changed - kind: fixed
description: | description: |
Default to rollingUpdate strategy Probes should point to numbered ports
artifacthub.io/links: | artifacthub.io/links: |
- name: "source" - name: "source"
url: "https://github.com/bjw-s/k8s-ycl" url: "https://github.com/bjw-s/k8s-ycl"

View file

@ -17,7 +17,7 @@ controllers:
spec: spec:
httpGet: httpGet:
path: /healthz path: /healthz
port: probe port: 8081
initialDelaySeconds: 0 initialDelaySeconds: 0
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 1 timeoutSeconds: 1
@ -28,7 +28,7 @@ controllers:
spec: spec:
httpGet: httpGet:
path: /readyz path: /readyz
port: probe port: 8081
initialDelaySeconds: 0 initialDelaySeconds: 0
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 1 timeoutSeconds: 1
@ -39,7 +39,7 @@ controllers:
spec: spec:
httpGet: httpGet:
path: /healthz path: /healthz
port: probe port: 8081
failureThreshold: 30 failureThreshold: 30
periodSeconds: 10 periodSeconds: 10