Skip to content

Commit f939809

Browse files
authored
Merge pull request #9 from stfc/change-names
change chart names
2 parents 8e7ea01 + 69da536 commit f939809

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+124
-35
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: lint stfc-cloud-cert-manager chart
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
paths:
8+
- ".github/workflows/cert_manager_chart.yaml"
9+
- "charts/stfc-cloud-cert-manager/**"
10+
11+
jobs:
12+
helm-lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Helm
17+
uses: azure/setup-helm@v3
18+
- name: Lint Helm Chart
19+
# Note --strict=true != --strict with the former being stricter
20+
run: |
21+
helm dependency update charts/stfc-cloud-cert-manager/.
22+
helm lint charts/stfc-cloud-cert-manager --values charts/stfc-cloud-cert-manager/values.yaml --strict=true

.github/workflows/chatops_chart.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: lint chatops Chart
1+
name: lint stfc-cloud-chatops chart
22
on:
33
push:
44
branches:
55
- main
66
pull_request:
77
paths:
88
- ".github/workflows/chatops_chart.yaml"
9-
- "charts/chatops/**"
9+
- "charts/stfc-cloud-chatops/**"
1010

1111
jobs:
1212
helm-lint:
@@ -18,6 +18,6 @@ jobs:
1818
- name: Lint Helm Chart
1919
# Note --strict=true != --strict with the former being stricter
2020
run: |
21-
cp charts/chatops/secret-values.yaml.template /tmp/secret-values.yaml
22-
helm dependency update charts/chatops/.
23-
helm lint charts/chatops --values charts/chatops/values.yaml --values /tmp/secret-values.yaml --strict=true
21+
cp charts/stfc-cloud-chatops/secret-values.yaml.template /tmp/secret-values.yaml
22+
helm dependency update charts/stfc-cloud-chatops/.
23+
helm lint charts/stfc-cloud-chatops --values charts/stfc-cloud-chatops/values.yaml --values /tmp/secret-values.yaml --strict=true
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: lint manila-csi chart
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
paths:
8+
- ".github/workflows/manila_csi_chart.yaml"
9+
- "charts/stfc-cloud-manila-csi/**"
10+
11+
jobs:
12+
helm-lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Helm
17+
uses: azure/setup-helm@v3
18+
- name: Setup Dummy clouds.yaml
19+
run: |
20+
cat << EOF > charts/stfc-cloud-manila-csi/clouds.yaml
21+
clouds:
22+
openstack:
23+
auth:
24+
auth_url: "foo.example.com"
25+
application_credential_id: "foo"
26+
application_credential_secret: "bar"
27+
region_name: "biz"
28+
interface: "public"
29+
identity_api_version: 3
30+
auth_type: "v3applicationcredential"
31+
EOF
32+
- name: Lint Helm Chart
33+
# Note --strict=true != --strict with the former being stricter
34+
run: |
35+
helm dependency update charts/stfc-cloud-manila-csi/.
36+
helm lint charts/stfc-cloud-manila-csi --values charts/stfc-cloud-manila-csi/values.yaml --values charts/stfc-cloud-manila-csi/clouds.yaml --strict=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: lint materials-galaxy chart
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
paths:
8+
- ".github/workflows/materials_galaxy_chart.yaml"
9+
- "charts/materials-galaxy/**"
10+
11+
jobs:
12+
helm-lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Helm
17+
uses: azure/setup-helm@v3
18+
- name: Lint Helm Chart
19+
# Note --strict=true != --strict with the former being stricter
20+
run: |
21+
cp charts/materials-galaxy/secret-values.yaml.template /tmp/secret-values.yaml
22+
helm dependency update charts/materials-galaxy/.
23+
helm lint charts/materials-galaxy --values charts/materials-galaxy/values.yaml --values /tmp/secret-values.yaml --strict=true

.github/workflows/opensearch_chart.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint opensearch chart
1+
name: lint stfc-cloud-opensearch chart
22
on:
33
push:
44
branches:
@@ -18,6 +18,6 @@ jobs:
1818
- name: Lint Helm Chart
1919
# Note --strict=true != --strict with the former being stricter
2020
run: |
21-
cp charts/opensearch/secret-values.yaml.template /tmp/secret-values.yaml
22-
helm dependency update charts/opensearch/.
23-
helm lint charts/opensearch --values charts/opensearch/values.yaml --values /tmp/secret-values.yaml --strict=true
21+
cp charts/stfc-cloud-opensearch/secret-values.yaml.template /tmp/secret-values.yaml
22+
helm dependency update charts/stfc-cloud-opensearch/.
23+
helm lint charts/stfc-cloud-opensearch --values charts/stfc-cloud-opensearch/values.yaml --values /tmp/secret-values.yaml --strict=true

.github/workflows/rabbit_consumer_chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: lint rabbit consumer chart
1+
name: lint stfc-cloud-rabbit-consumer chart
22
on:
33
push:
44
branches:
55
- main
66
pull_request:
77
paths:
88
- ".github/workflows/rabbit_consumer_chart.yaml"
9-
- "charts/rabbit-consumer/**"
9+
- "charts/stfc-cloud-rabbit-consumer/**"
1010

1111
jobs:
1212
helm-lint:
@@ -18,4 +18,4 @@ jobs:
1818
- name: Lint Helm Chart
1919
# Note --strict=true != --strict with the former being stricter
2020
run: |
21-
helm lint charts/rabbit-consumer --values charts/rabbit-consumer/values.yaml --values charts/rabbit-consumer/dev-values.yaml --strict=true
21+
helm lint charts/stfc-cloud-rabbit-consumer --values charts/stfc-cloud-rabbit-consumer/values.yaml --values charts/stfc-cloud-rabbit-consumer/dev-values.yaml --strict=true

.github/workflows/stfc_cloud_openstack_cluster_chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint stfc-cloud-openstack-cluster Chart
1+
name: lint stfc-cloud-openstack-cluster chart
22
on:
33
push:
44
branches:

charts/chatops/Chart.yaml

-6
This file was deleted.

charts/stfc-cloud-cert-manager/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: stfc-cloud-cert-manager
3-
version: 1.1.0
3+
version: 1.2.0
44
description: A Helm chart to deploy opinionated instance of cert-manager for the STFC Cloud
55
type: application
66

charts/stfc-cloud-cert-manager/templates/le-prod-clusterissuer.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
acme:
99
# Let's Encrypt will use this to contact you about expiring
1010
# certificates, and issues related to your account.
11-
email: {{ .Values.le-prod.email }}
11+
email: {{ index .Values "le-prod" "email"}}
1212
server: https://acme-v02.api.letsencrypt.org/directory
1313
privateKeySecretRef:
1414
name: le-prod-account-key

charts/stfc-cloud-chatops/Chart.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
apiVersion: v2
2+
name: stfc-cloud-chatops
3+
description: A Helm chart to deploy STFC Cloud ChatOps tools
4+
type: application
5+
version: 0.1.0
6+
appVersion: "5.0.0"

charts/chatops/README.md charts/stfc-cloud-chatops/README.md

+3-3
File renamed without changes.

charts/stfc-cloud-manila-csi/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: stfc-cloud-manila-csi
3-
version: 1.0.0
3+
version: 1.1.0
44
dependencies:
55
# https://github.com/kubernetes/cloud-provider-openstack/tree/master/charts/cinder-csi-plugin
66
- name: openstack-manila-csi

charts/stfc-cloud-manila-csi/values.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ openstack-manila-csi:
88
fsGroupPolicy: None
99
fwdNodePluginEndpoint:
1010
dir: /var/lib/kubelet/plugins/cephfs.csi.ceph.com
11-
sockFile: csi.sock
11+
sockFile: csi.sock
12+
13+
ceph-csi-cephfs:
14+
readAffinity:
15+
enabled: false
File renamed without changes.

charts/opensearch/Chart.yaml charts/stfc-cloud-opensearch/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apiVersion: v2
2-
name: opensearch
2+
name: stfc-cloud-opensearch
3+
description: A Helm chart to deploy an opinionated opensearch cluster with IRIS-IAM integration
4+
type: application
35
version: 1.0.0
46
dependencies:
57
- repository: https://opensearch-project.github.io/opensearch-k8s-operator/

charts/opensearch/README.md charts/stfc-cloud-opensearch/README.md

+3-3
File renamed without changes.

charts/stfc-cloud-openstack-cluster/Chart.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apiVersion: v2
22
name: stfc-cloud-openstack-cluster
3+
description: A Helm chart to deploy a compliant K8s cluster (using CAPI) on the STFC Cloud
4+
type: application
35
version: 1.3.0
46
dependencies:
57
- repository: https://azimuth-cloud.github.io/capi-helm-charts

charts/rabbit-consumer/Chart.yaml charts/stfc-cloud-rabbit-consumer/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
name: rabbit-consumer-chart
3-
description: A Helm chart for Rabbit Consumers
2+
name: stfc-cloud-rabbit-consumer
3+
description: A Helm chart for STFC Cloud Rabbit Consumers
44
type: application
55

66
# This is the chart version. This version number should be incremented each time you make changes

charts/rabbit-consumer/README.md charts/stfc-cloud-rabbit-consumer/README.md

+3-3

0 commit comments

Comments
 (0)