Skip to content

Commit 655f1fc

Browse files
committed
fix: externalize core charts
Signed-off-by: Chris Butler <chris.butler@redhat.com>
1 parent f8b6b25 commit 655f1fc

33 files changed

+66
-702
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Validate defaults apply
3+
4+
on: [push, pull_request]
5+
6+
jobs:
7+
validate_defaults:
8+
name: Json Schema tests
9+
strategy:
10+
matrix:
11+
python-version: [3.11]
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v4
17+
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
23+
24+
- name: Install yq
25+
uses: chrisdickinson/setup-yq@latest
26+
with:
27+
yq-version: v4.30.7
28+
29+
- name: Validate clusterGroupName is simple
30+
run: |
31+
if [ "$(yq '.main.clusterGroupName' values-global.yaml)" != "simple" ]; then
32+
echo "main.clusterGroupName must be 'simple'"
33+
exit 1
34+
fi

ansible/gen-certificate.yaml

Lines changed: 0 additions & 139 deletions
This file was deleted.

ansible/initdata-default.toml.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ version = "0.1.0"
55
"aa.toml" = '''
66
[token_configs]
77
[token_configs.coco_as]
8-
url = "https://kbs-trustee-operator-system.{{ hub_domain }}"
8+
url = "https://kbs.{{ hub_domain }}"
99

1010
[token_configs.kbs]
11-
url = "https://kbs-trustee-operator-system.{{ hub_domain }}"
11+
url = "https://kbs.{{ hub_domain }}"
1212
cert = """
1313
{{ trustee_cert }}
1414
"""
@@ -20,7 +20,7 @@ credentials = []
2020

2121
[kbc]
2222
name = "cc_kbc"
23-
url = "https://kbs-trustee-operator-system.{{ hub_domain }}"
23+
url = "https://kbs.{{ hub_domain }}"
2424
kbs_cert = """
2525
{{ trustee_cert }}
2626
"""

charts/coco-supported/sandbox/Chart.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

charts/coco-supported/sandbox/templates/feature-gate.yaml

Lines changed: 0 additions & 9 deletions
This file was deleted.

charts/coco-supported/sandbox/templates/kata-config.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

charts/coco-supported/sandbox/templates/ssh-key-eso.yaml

Lines changed: 0 additions & 22 deletions
This file was deleted.

charts/coco-supported/sandbox/values.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

charts/hub/sandbox-policies/Chart.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

charts/hub/sandbox-policies/README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)