Skip to content

Commit 75f7d53

Browse files
committed
handle rename
Signed-off-by: Steve Taylor <steve@deployhub.com>
1 parent 100ca63 commit 75f7d53

3 files changed

Lines changed: 9 additions & 18 deletions

File tree

charts/deployhub/Chart.yaml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,9 @@ keywords:
88
- Microservices
99
- SBOM
1010
type: application
11-
version: 10.0.334
11+
version: 10.0.335
1212
appVersion: 10.0.0
1313
dependencies:
14-
- name: dh-ms-general
15-
version: 11.0.403
16-
repository: https://ortelius.github.io/dh-ms-general/
17-
- name: dh-ms-nginx
18-
version: 11.0.403
19-
repository: https://ortelius.github.io/dh-ms-nginx/
20-
- name: dh-ms-ui
21-
version: 11.0.403
22-
repository: https://ortelius.github.io/dh-ms-ui/
2314
- name: ms-general
2415
version: 11.0.407
2516
repository: https://deployhubproject.github.io/charts/

charts/deployhub/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
6060
a. Using the internal Postgres database:
6161

6262
```console
63-
DEPLOYHUB_VERSION=10.0.1088
63+
DEPLOYHUB_VERSION=10.0.335
6464
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
6565
helm repo update
6666
helm upgrade --install my-release deployhub/deployhub --set dh-ms-general.dbpass=my_db_password --set global.postgresql.enabled=true --set global.nginxController.enabled=true --version "${DEPLOYHUB_VERSION}" --namespace deployhub --create-namespace
@@ -71,7 +71,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
7171
b. Using the external Postgres database:
7272

7373
```console
74-
DEPLOYHUB_VERSION=10.0.1088
74+
DEPLOYHUB_VERSION=10.0.335
7575
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
7676
helm repo update
7777
helm upgrade --install my-release deployhub/deployhub --set dh-ms-general.dbpass=my_db_password --set dh-ms-general.dbuser=postgres --set dh-ms-general.dbhost=postgres.hosted.com --set-string dh-ms-general.dbport=5432 --set global.nginxController.enabled=true --version "${DEPLOYHUB_VERSION}" --namespace deployhub --create-namespace
@@ -98,7 +98,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
9898
a. Using the internal Postgres database:
9999

100100
```console
101-
DEPLOYHUB_VERSION=10.0.1088
101+
DEPLOYHUB_VERSION=10.0.335
102102
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
103103
helm repo update
104104
helm upgrade --install my-release deployhub/deployhub --set dh-ms-general.dbpass=my_db_password --set global.postgresql.enabled=true --set dh-ms-nginx.ingress.nodePort=30000 --version "${DEPLOYHUB_VERSION}" --namespace deployhub --create-namespace
@@ -109,7 +109,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
109109
b. Using the external Postgres database:
110110

111111
```console
112-
DEPLOYHUB_VERSION=10.0.1088
112+
DEPLOYHUB_VERSION=10.0.335
113113
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
114114
helm repo update
115115
helm upgrade --install my-release deployhub/deployhub --set dh-ms-general.dbpass=my_db_password --set dh-ms-general.dbuser=postgres --set dh-ms-general.dbhost=postgres.hosted.com --set-string dh-ms-general.dbport=5432 --set dh-ms-nginx.ingress.nodePort=30000 --version "${DEPLOYHUB_VERSION}" --namespace deployhub --create-namespace
@@ -161,7 +161,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
161161
a. Using the external Postgres database:
162162

163163
```console
164-
DEPLOYHUB_VERSION=10.0.1088
164+
DEPLOYHUB_VERSION=10.0.335
165165
DEPLOYHUB_DNSNAME=deployhub.example.com
166166
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
167167
helm repo update
@@ -189,7 +189,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
189189
3. Setup Environment Variables
190190

191191
```console
192-
DEPLOYHUB_VERSION=10.0.1088
192+
DEPLOYHUB_VERSION=10.0.335
193193
CLUSTER_NAME=deployhub
194194
```
195195

@@ -233,7 +233,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
233233
a. Using the external Postgres database:
234234

235235
```console
236-
DEPLOYHUB_VERSION=10.0.1088
236+
DEPLOYHUB_VERSION=10.0.335
237237
DEPLOYHUB_DNSNAME=deployhub.example.com
238238
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
239239
helm repo update

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async function getChartEntries () {
6161
})
6262
latest = latest[1]
6363

64-
if (latest.name !== 'dh-jwt' && latest.name !== 'dh-postgres') {
64+
if (latest.name !== 'dh-jwt' && latest.name !== 'dh-postgres' && latest.name !== 'dh-ms-ui' && latest.name !== 'dh-ms-nginx' && latest.name !== 'dh-ms-general') {
6565
const dep = {}
6666
dep.name = latest.name
6767
dep.version = latest.version

0 commit comments

Comments
 (0)