Skip to content

Commit

Permalink
Merge pull request #397 from openinfradev/render
Browse files Browse the repository at this point in the history
change appname to lowercase due to argo-cd's requirements
  • Loading branch information
intelliguy authored Oct 25, 2024
2 parents de55633 + 7f0f6a6 commit 8d20293
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions git-repo/render-manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ spec:
/installer/template -b ${BASE_DIR}/${app} -o ${site}/${app}/site-values.yaml --output ${OUTPUT_DIR}/${site}/${app}
log 0 "INFO" "Successfully Generate ${app} manifests Files!"
mkdir ${OUTPUT_DIR}/$site/$app/${app}-CRD
mkdir ${OUTPUT_DIR}/$site/$app/${app}-crd
echo "Move every CustomResourceDefinition to ${OUTPUT_DIR}/$site/$app/${app}-CRD"
for i in `find ${OUTPUT_DIR}/$site/$app | grep CustomResourceDefinition | grep -v '/${app}-CRD/'`
echo "Move every CustomResourceDefinition to ${OUTPUT_DIR}/$site/$app/${app}-crd"
for i in `find ${OUTPUT_DIR}/$site/$app | grep CustomResourceDefinition | grep -v '/${app}-crd/'`
do
mv $i ${OUTPUT_DIR}/$site/$app/${app}-CRD
mv $i ${OUTPUT_DIR}/$site/$app/${app}-crd
done
done
Expand Down
2 changes: 1 addition & 1 deletion sealed_secrets/setup-sealed-secrets-on-usercluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
- name: list
value: |
[
{ "app_group": "sealed-secrets", "path": "sealed-secrets-CRD", "namespace": "kube-system", "target_cluster": "" }
{ "app_group": "sealed-secrets", "path": "sealed-secrets-crd", "namespace": "kube-system", "target_cluster": "" }
]
- - name: installControllers
Expand Down
2 changes: 1 addition & 1 deletion tks-cluster/bootstrap-usercluster-wftpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ spec:
- name: list
value: |
[
{ "app_group": "tks-cluster", "path": "tks-cluster-CRD", "namespace": "argo", "target_cluster": "tks-admin" }
{ "app_group": "tks-cluster", "path": "tks-cluster-crd", "namespace": "argo", "target_cluster": "tks-admin" }
]
- - name: tks-get-cluster-info
templateRef:
Expand Down
2 changes: 1 addition & 1 deletion tks-cluster/create-usercluster-wftpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ spec:
- name: list
value: |
[
{ "app_group": "tks-cluster", "path": "tks-cluster-CRD", "namespace": "taco-system", "target_cluster": "" }
{ "app_group": "tks-cluster", "path": "tks-cluster-crd", "namespace": "taco-system", "target_cluster": "" }
]
- - name: install-addons-cni
Expand Down

0 comments on commit 8d20293

Please sign in to comment.