mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
[common] 2.0.4 (#392)
This commit is contained in:
parent
ee918dd6d0
commit
57f4f5d7bf
8
.github/renovate.json5
vendored
8
.github/renovate.json5
vendored
@ -29,13 +29,15 @@
|
|||||||
"updateTypes": ["minor"],
|
"updateTypes": ["minor"],
|
||||||
"bumpVersion": "minor",
|
"bumpVersion": "minor",
|
||||||
"labels": ["dependency/minor"],
|
"labels": ["dependency/minor"],
|
||||||
"packageNames": ["common"]
|
"packageNames": ["common"],
|
||||||
|
"groupName": ["internal minor dep"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"updateTypes": ["patch"],
|
"updateTypes": ["patch"],
|
||||||
"bumpVersion": "patch",
|
"bumpVersion": "patch",
|
||||||
"labels": ["dependency/patch"],
|
"labels": ["dependency/patch"],
|
||||||
"packageNames": ["common"]
|
"packageNames": ["common"],
|
||||||
|
"groupName": ["internal patch dep"]
|
||||||
},
|
},
|
||||||
//
|
//
|
||||||
// Other library deps
|
// Other library deps
|
||||||
@ -54,6 +56,7 @@
|
|||||||
"bumpVersion": "minor",
|
"bumpVersion": "minor",
|
||||||
"labels": ["dependency/minor"],
|
"labels": ["dependency/minor"],
|
||||||
"excludePackageNames": ["common"],
|
"excludePackageNames": ["common"],
|
||||||
|
"groupName": ["external minor dep"],
|
||||||
"schedule": [
|
"schedule": [
|
||||||
"every 2 months on the first day of the month"
|
"every 2 months on the first day of the month"
|
||||||
]
|
]
|
||||||
@ -63,6 +66,7 @@
|
|||||||
"bumpVersion": "patch",
|
"bumpVersion": "patch",
|
||||||
"labels": ["dependency/patch"],
|
"labels": ["dependency/patch"],
|
||||||
"excludePackageNames": ["common"],
|
"excludePackageNames": ["common"],
|
||||||
|
"groupName": ["external patch dep"],
|
||||||
"schedule": [
|
"schedule": [
|
||||||
"every 1 months on the first day of the month"
|
"every 1 months on the first day of the month"
|
||||||
]
|
]
|
||||||
|
9
.github/workflows/lint-test.yaml
vendored
9
.github/workflows/lint-test.yaml
vendored
@ -38,13 +38,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Run chart-testing (lint)
|
- name: Run chart-testing (lint)
|
||||||
id: lint
|
id: lint
|
||||||
run: ct lint --config .github/ct.yaml
|
run: ct lint --config .github/ct.yaml --excluded-charts ""
|
||||||
if: steps.list-changed.outputs.changed == 'true'
|
if: steps.list-changed.outputs.common == 'true' || steps.list-changed.outputs.common == 'true'
|
||||||
|
|
||||||
- name: Run chart-testing (lint common-test)
|
|
||||||
run: |
|
|
||||||
ct lint --config .github/ct.yaml --charts 'charts/common-test'
|
|
||||||
if: steps.list-changed.outputs.common == 'true'
|
|
||||||
|
|
||||||
- name: Create kind cluster
|
- name: Create kind cluster
|
||||||
uses: helm/kind-action@v1.1.0
|
uses: helm/kind-action@v1.1.0
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: common-test
|
name: common-test
|
||||||
description: Helper chart to test different use cases of the common library
|
description: Helper chart to test different use cases of the common library
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
keywords:
|
keywords:
|
||||||
- k8s-at-home
|
- k8s-at-home
|
||||||
- common
|
- common
|
||||||
|
@ -9,3 +9,11 @@ service:
|
|||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: true
|
||||||
|
readiness:
|
||||||
|
enabled: true
|
||||||
|
startup:
|
||||||
|
enabled: true
|
||||||
|
@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [2.0.4]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- `periodSeconds` now works for all probe types.
|
||||||
|
|
||||||
## [2.0.0]
|
## [2.0.0]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -24,6 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
This is the last version before starting this changelog. All sorts of cool stuff was changed, but only `git log` remembers what that was :slightly_frowning_face:
|
This is the last version before starting this changelog. All sorts of cool stuff was changed, but only `git log` remembers what that was :slightly_frowning_face:
|
||||||
|
|
||||||
|
[2.0.4]: https://github.com/k8s-at-home/charts/tree/common-2.0.4/charts/common
|
||||||
|
|
||||||
[2.0.0]: https://github.com/k8s-at-home/charts/tree/common-2.0.0/charts/common
|
[2.0.0]: https://github.com/k8s-at-home/charts/tree/common-2.0.0/charts/common
|
||||||
|
|
||||||
[1.7.0]: https://github.com/k8s-at-home/charts/tree/common-1.7.0/charts/common
|
[1.7.0]: https://github.com/k8s-at-home/charts/tree/common-1.7.0/charts/common
|
||||||
|
@ -2,11 +2,11 @@ apiVersion: v2
|
|||||||
name: common
|
name: common
|
||||||
description: Function library for k8s-at-home charts
|
description: Function library for k8s-at-home charts
|
||||||
type: library
|
type: library
|
||||||
version: 2.0.3
|
version: 2.0.4
|
||||||
keywords:
|
keywords:
|
||||||
- k8s-at-home
|
- k8s-at-home
|
||||||
- common
|
- common
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/common
|
home: https://github.com/k8s-at-home/charts/tree/master/charts/common
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: BJW-S
|
- name: bjw-s
|
||||||
email: me@juggels.online
|
email: me@bjw-s.dev
|
||||||
|
@ -15,6 +15,7 @@ Probes selection logic.
|
|||||||
{{- printf "initialDelaySeconds: %v" $probe.spec.initialDelaySeconds | nindent 2 }}
|
{{- printf "initialDelaySeconds: %v" $probe.spec.initialDelaySeconds | nindent 2 }}
|
||||||
{{- printf "failureThreshold: %v" $probe.spec.failureThreshold | nindent 2 }}
|
{{- printf "failureThreshold: %v" $probe.spec.failureThreshold | nindent 2 }}
|
||||||
{{- printf "timeoutSeconds: %v" $probe.spec.timeoutSeconds | nindent 2 }}
|
{{- printf "timeoutSeconds: %v" $probe.spec.timeoutSeconds | nindent 2 }}
|
||||||
|
{{- printf "periodSeconds: %v" $probe.spec.periodSeconds | nindent 2 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -61,34 +61,37 @@ probes:
|
|||||||
enabled: true
|
enabled: true
|
||||||
## Set this to true if you wish to specify your own livenessProbe
|
## Set this to true if you wish to specify your own livenessProbe
|
||||||
custom: false
|
custom: false
|
||||||
## The spec field contains the values for the default livenessProbe.
|
## The spec field contains the values for the default livenessProbe.
|
||||||
## If you selected custom: true, this field holds the definition of the livenessProbe.
|
## If you selected custom: true, this field holds the definition of the livenessProbe.
|
||||||
spec:
|
spec:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
failureThreshold: 5
|
failureThreshold: 5
|
||||||
|
periodSeconds: 10
|
||||||
timeoutSeconds: 10
|
timeoutSeconds: 10
|
||||||
|
|
||||||
readiness:
|
readiness:
|
||||||
enabled: true
|
enabled: true
|
||||||
## Set this to true if you wish to specify your own readinessProbe
|
## Set this to true if you wish to specify your own readinessProbe
|
||||||
custom: false
|
custom: false
|
||||||
## The spec field contains the values for the default readinessProbe.
|
## The spec field contains the values for the default readinessProbe.
|
||||||
## If you selected custom: true, this field holds the definition of the readinessProbe.
|
## If you selected custom: true, this field holds the definition of the readinessProbe.
|
||||||
spec:
|
spec:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
failureThreshold: 5
|
failureThreshold: 5
|
||||||
|
periodSeconds: 10
|
||||||
timeoutSeconds: 10
|
timeoutSeconds: 10
|
||||||
|
|
||||||
startup:
|
startup:
|
||||||
enabled: false
|
enabled: false
|
||||||
## Set this to true if you wish to specify your own startupProbe
|
## Set this to true if you wish to specify your own startupProbe
|
||||||
custom: false
|
custom: false
|
||||||
## The spec field contains the values for the default startupProbe.
|
## The spec field contains the values for the default startupProbe.
|
||||||
## If you selected custom: true, this field holds the definition of the startupProbe.
|
## If you selected custom: true, this field holds the definition of the startupProbe.
|
||||||
spec:
|
spec:
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
failureThreshold: 30
|
failureThreshold: 30
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
|
timeoutSeconds: 10
|
||||||
|
|
||||||
service:
|
service:
|
||||||
enabled: true
|
enabled: true
|
||||||
@ -120,7 +123,7 @@ service:
|
|||||||
# type: ClusterIP
|
# type: ClusterIP
|
||||||
# # Specify the default port information
|
# # Specify the default port information
|
||||||
# port:
|
# port:
|
||||||
# port:
|
# port:
|
||||||
# # name defaults to http
|
# # name defaults to http
|
||||||
# name:
|
# name:
|
||||||
# protocol: TCP
|
# protocol: TCP
|
||||||
@ -243,7 +246,7 @@ addons:
|
|||||||
# Set the VPN container securityContext
|
# Set the VPN container securityContext
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
add:
|
add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
- SYS_MODULE
|
- SYS_MODULE
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user