refactor(charts): BREAKING CHANGE (#2836)

* Update Apps with new Common version

* Patch with the secret fixes from common

* fix amd
This commit is contained in:
Kjeld Schouten-Lebbing
2022-06-07 19:41:19 +02:00
committed by GitHub
parent e4911cf0b1
commit 5529c2a3af
1546 changed files with 10467 additions and 3650 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ appVersion: "9.38.6"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 9.3.24
version: 10.0.8
description: CyberChef is a simple, intuitive web app for carrying out all manner of "cyber" operations within a web browser.
home: https://github.com/truecharts/apps/tree/master/charts/stable/cyberchef
icon: https://truecharts.org/_static/img/appicons/cyberchef.png
@@ -17,7 +17,7 @@ maintainers:
name: cyberchef
sources:
- https://hub.docker.com/r/mpepping/cyberchef
version: 1.0.31
version: 2.0.0
annotations:
truecharts.org/catagories: |
- utilities
@@ -0,0 +1,21 @@
#!/usr/bin/python3
import json
import os
import sys
def migrate(values):
values.update({
**({'secretEnv': values['secret']} if values.get('secret') else {}),
**({'secret': {}} if values.get('secret'))
})
return values
if __name__ == '__main__':
if len(sys.argv) != 2:
exit(1)
if os.path.exists(sys.argv[1]):
with open(sys.argv[1], 'r') as f:
print(json.dumps(migrate(json.loads(f.read()))))
@@ -1 +1 @@
{{ include "common.all" . }}
{{ include "tc.common.loader.all" . }}
+1 -1
View File
@@ -1,6 +1,6 @@
image:
repository: tccr.io/truecharts/cyberchef
tag: v9.38.6@sha256:f70a91018cfdd3d5fad2fb1c172b72a5f3ecdeae9b25e0515027a06a18ac5ff5
tag: v9.38.6@sha256:cd76518bb58a63bb97d8cac8b8dd51196ad88da0a961241df14ffa4d892a83f1
pullPolicy: IfNotPresent
securityContext: