Skip to content

Commit 1a1f632

Browse files
fix: change repo url for catalog charts (#1635)
Co-authored-by: Jehoszafat Zimnowoda <[email protected]> Co-authored-by: jeho <[email protected]>
1 parent 98ee9af commit 1a1f632

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.env.sample

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ AWS_ACCESS_KEY_ID=''
2121
AWS_SECRET_ACCESS_KEY=''
2222

2323

24-
OTOMI_CHARTS_URL='https://github.com/redkubes/otomi-charts.git'
24+
OTOMI_CHARTS_URL='https://github.com/linode/apl-charts.git'

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To install Otomi, make sure to have a K8s cluster running with at least:
3737
- A default storage class configured
3838
- When using the `custom` provider, make sure the K8s LoadBalancer Service created by `Otomi` can obtain an external IP (using a cloud load balancer or MetalLB)
3939

40-
> **_NOTE:_** Install Otomi with DNS to unlock it's full potential. Check [otomi.io](https://otomi.io) for more info.
40+
> **_NOTE:_** Install Otomi with DNS to unlock it's full potential. Check [otomi.io](https://otomi.io) for more info.
4141
4242
Add the Helm repository:
4343

@@ -135,7 +135,7 @@ Otomi open source consists out of the following projects:
135135
- Otomi Core (this project): The heart of Otomi
136136
- [Otomi Tasks](https://github.com/redkubes/otomi-tasks): Autonomous jobs orchestrated by Otomi Core
137137
- [Otomi Clients](https://github.com/redkubes/otomi-clients): Factory to build and publish openapi clients used in by otomi-tasks
138-
- [Otomi Charts](https://github.com/redkubes/otomi-charts): Quickstart Helm templates offered in the Catalog
138+
- [Otomi Charts](https://github.com/linode/apl-charts): Quickstart Helm templates offered in the Catalog
139139

140140
## Documentation
141141

src/cmd/commit.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ export const commit = async (): Promise<void> => {
7272
}
7373

7474
export const cloneOtomiChartsInGitea = async (): Promise<void> => {
75-
const d = terminal(`cmd:${cmdName}:gitea-otomi-charts`)
76-
d.info('Cloning otomi-charts in Gitea')
75+
const d = terminal(`cmd:${cmdName}:gitea-apl-charts`)
76+
d.info('Cloning apl-charts in Gitea')
7777
const values = (await hfValues()) as Record<string, any>
7878
const { email, username, password } = getRepo(values)
79-
const workDir = '/tmp/otomi-charts'
79+
const workDir = '/tmp/apl-charts'
8080
const otomiChartsUrl = env.OTOMI_CHARTS_URL
8181
const giteaChartsUrl = `http://${username}:${password}@gitea-http.gitea.svc.cluster.local:3000/otomi/charts.git`
8282
try {
@@ -101,7 +101,7 @@ export const cloneOtomiChartsInGitea = async (): Promise<void> => {
101101
} catch (error) {
102102
d.info('CloneOtomiChartsInGitea Error:', error)
103103
}
104-
d.info('Cloned otomi-charts in Gitea')
104+
d.info('Cloned apl-charts in Gitea')
105105
}
106106

107107
export const printWelcomeMessage = async (): Promise<void> => {

src/common/envalid.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export const cliEnvSpec = {
2929
NODE_TLS_REJECT_UNAUTHORIZED: bool({ default: true }),
3030
OTOMI_DEV: bool({ default: false }),
3131
OTOMI_CHARTS_URL: str({
32-
default: 'https://github.com/redkubes/otomi-charts.git',
33-
desc: 'The otomi-charts repository url to clone into Gitea',
32+
default: 'https://github.com/linode/apl-charts.git',
33+
desc: 'The apl-charts repository url to clone into Gitea',
3434
}),
3535
OTOMI_IN_TERMINAL: bool({ default: true }),
3636
STATIC_COLORS: bool({ default: false }),

tests/integration/minimal-with-team.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ teamConfig:
9595
path: deployment
9696
revision: main
9797
selectedChart: deployment
98-
url: https://github.com/redkubes/otomi-charts.git
98+
url: https://github.com/linode/apl-charts.git
9999
- name: nginx-ksvc
100100
path: ksvc
101101
revision: main
102102
selectedChart: ksvc
103-
url: https://github.com/redkubes/otomi-charts.git
103+
url: https://github.com/linode/apl-charts.git
104104
admin:
105105
services: []
106106
workloads:

tests/integration/monitoring-with-team.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ teamConfig:
7070
path: otomi-deployment
7171
revision: b65583f614c800cb215b8418febbb42abbad5883
7272
selectedChart: custom
73-
url: https://github.com/redkubes/otomi-charts
73+
url: https://github.com/linode/apl-charts
7474
admin:
7575
services: []
7676
workloads: []

tests/integration/upgrade.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,12 @@ teamConfig:
128128
path: deployment
129129
revision: main
130130
selectedChart: deployment
131-
url: https://github.com/redkubes/otomi-charts.git
131+
url: https://github.com/linode/apl-charts.git
132132
- name: nginx-ksvc
133133
path: ksvc
134134
revision: main
135135
selectedChart: ksvc
136-
url: https://github.com/redkubes/otomi-charts.git
136+
url: https://github.com/linode/apl-charts.git
137137
admin:
138138
services: []
139139
workloads:

0 commit comments

Comments
 (0)