Skip to content

Commit

Permalink
handle rename
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Taylor <[email protected]>
  • Loading branch information
sbtaylor15 committed Sep 11, 2024
1 parent 100ca63 commit 75f7d53
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
11 changes: 1 addition & 10 deletions charts/deployhub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,9 @@ keywords:
- Microservices
- SBOM
type: application
version: 10.0.334
version: 10.0.335
appVersion: 10.0.0
dependencies:
- name: dh-ms-general
version: 11.0.403
repository: https://ortelius.github.io/dh-ms-general/
- name: dh-ms-nginx
version: 11.0.403
repository: https://ortelius.github.io/dh-ms-nginx/
- name: dh-ms-ui
version: 11.0.403
repository: https://ortelius.github.io/dh-ms-ui/
- name: ms-general
version: 11.0.407
repository: https://deployhubproject.github.io/charts/
Expand Down
14 changes: 7 additions & 7 deletions charts/deployhub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
a. Using the internal Postgres database:

```console
DEPLOYHUB_VERSION=10.0.1088
DEPLOYHUB_VERSION=10.0.335
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
helm repo update
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
Expand All @@ -71,7 +71,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
b. Using the external Postgres database:

```console
DEPLOYHUB_VERSION=10.0.1088
DEPLOYHUB_VERSION=10.0.335
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
helm repo update
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
Expand All @@ -98,7 +98,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
a. Using the internal Postgres database:

```console
DEPLOYHUB_VERSION=10.0.1088
DEPLOYHUB_VERSION=10.0.335
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
helm repo update
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
Expand All @@ -109,7 +109,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
b. Using the external Postgres database:

```console
DEPLOYHUB_VERSION=10.0.1088
DEPLOYHUB_VERSION=10.0.335
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
helm repo update
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
Expand Down Expand Up @@ -161,7 +161,7 @@ This chart deploys all of the required secrets, services, and deployments on a [
a. Using the external Postgres database:

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

```console
DEPLOYHUB_VERSION=10.0.1088
DEPLOYHUB_VERSION=10.0.335
CLUSTER_NAME=deployhub
```

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

```console
DEPLOYHUB_VERSION=10.0.1088
DEPLOYHUB_VERSION=10.0.335
DEPLOYHUB_DNSNAME=deployhub.example.com
helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
helm repo update
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function getChartEntries () {
})
latest = latest[1]

if (latest.name !== 'dh-jwt' && latest.name !== 'dh-postgres') {
if (latest.name !== 'dh-jwt' && latest.name !== 'dh-postgres' && latest.name !== 'dh-ms-ui' && latest.name !== 'dh-ms-nginx' && latest.name !== 'dh-ms-general') {
const dep = {}
dep.name = latest.name
dep.version = latest.version
Expand Down

0 comments on commit 75f7d53

Please sign in to comment.