Skip to content

Commit 548f0a2

Browse files
authored
Merge pull request #44 from bryopsida/26-add-optional-securitycontext-patching
Add optional, disabled by default, capability to patch security contexts
2 parents 69b2084 + 3673f83 commit 548f0a2

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

charts/patchwork/Chart.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ dependencies:
22
- name: redis
33
repository: https://groundhog2k.github.io/helm-charts/
44
version: 0.6.12
5-
digest: sha256:63d822d52425251da228046b414e0e7b81cddb44c216291934b8959fd4bad8bd
6-
generated: "2023-06-18T08:08:56.361031-05:00"
5+
- name: psa-restricted-patcher
6+
repository: https://bryopsida.github.io/psa-restricted-patcher/
7+
version: 0.10.0
8+
digest: sha256:2d78700b07cd65fb043c739b9f89aa7572b252fdfd3f490feab45c25659c3b56
9+
generated: "2023-07-02T06:59:56.647998-05:00"

charts/patchwork/Chart.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@ apiVersion: v2
22
name: patchwork
33
description: Watches deployments, daemonsets, and statefulsets for image updates and will automatically trigger rollouts to pull in updates
44
type: application
5-
version: 0.7.0
5+
version: 0.8.0
66
appVersion: '0.4.0'
77
dependencies:
88
- name: redis
99
repository: https://groundhog2k.github.io/helm-charts/
1010
version: 0.6.12
11+
- name: psa-restricted-patcher
12+
repository: https://bryopsida.github.io/psa-restricted-patcher/
13+
version: 0.10.0
14+
condition: psaPatcher.enabled
15+
alias: psaPatcher
1116
maintainers:
1217
- name: bryopsida

charts/patchwork/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# patchwork
22

3-
![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.0](https://img.shields.io/badge/AppVersion-0.4.0-informational?style=flat-square)
3+
![Version: 0.8.0](https://img.shields.io/badge/Version-0.8.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.4.0](https://img.shields.io/badge/AppVersion-0.4.0-informational?style=flat-square)
44

55
Watches deployments, daemonsets, and statefulsets for image updates and will automatically trigger rollouts to pull in updates
66

@@ -14,6 +14,7 @@ Watches deployments, daemonsets, and statefulsets for image updates and will aut
1414

1515
| Repository | Name | Version |
1616
|------------|------|---------|
17+
| https://bryopsida.github.io/psa-restricted-patcher/ | psaPatcher(psa-restricted-patcher) | 0.10.0 |
1718
| https://groundhog2k.github.io/helm-charts/ | redis | 0.6.12 |
1819

1920
## Values
@@ -42,6 +43,8 @@ Watches deployments, daemonsets, and statefulsets for image updates and will aut
4243
| podAnnotations | object | `{}` | |
4344
| podSecurityContext.fsGroup | int | `1001` | |
4445
| podSecurityContext.seccompProfile.type | string | `"RuntimeDefault"` | |
46+
| psaPatcher | object | `{"enabled":false}` | control the psa-restricted-patcher behavior, disabled by default, for more information see: https://artifacthub.io/packages/helm/psa-restricted-patcher/psa-restricted-patcher |
47+
| psaPatcher.enabled | bool | `false` | enable the psa patcher |
4548
| rbac.create | string | `"truewq"` | |
4649
| redis.image.pullPolicy | string | `"Always"` | |
4750
| redis.image.registry | string | `"ghcr.io"` | |
Binary file not shown.

charts/patchwork/values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,7 @@ redis:
9393
repository: bryopsida/redis
9494
tag: main
9595
pullPolicy: Always
96+
# -- control the psa-restricted-patcher behavior, disabled by default, for more information see: https://artifacthub.io/packages/helm/psa-restricted-patcher/psa-restricted-patcher
97+
psaPatcher:
98+
# -- enable the psa patcher
99+
enabled: false

0 commit comments

Comments
 (0)