Skip to content

Commit

Permalink
feat: Add test host with interface (#2056)
Browse files Browse the repository at this point in the history
* feat: Add test host with interface

* Update main.js

* bump tag
  • Loading branch information
aleixhub authored Aug 13, 2024
1 parent 8d4a0ce commit 91acca2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion catalog/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ui:
status:
name: # default use chart name + '-status'
image:
tag: v1.0.4
tag: v1.0.5
repository: quay.io/redhat-gpte/babylon-catalog-status
pullPolicy: IfNotPresent
replicaCount: 1
Expand Down
5 changes: 4 additions & 1 deletion catalog/status/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
const interface = {
"demo.redhat.com": "/status/interfaces/rhpds.json",
"partner.demo.redhat.com": "/status/interfaces/rhdp-partners.json",
"test.dev.demo.redhat.com": "/status/interfaces/rhpds.json",
"catalog.demo.redhat.com": "/status/interfaces/rhpds.json",
"catalog.partner.demo.redhat.com": "/status/interfaces/rhdp-partners.json",
"default": "/status/interfaces/rhdp-partners.json"
};

Expand All @@ -26,4 +29,4 @@ const interface = {
document.documentElement.innerHTML = replaceTokens(getHtml(), json)
});

})();
})();
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ catalog:
memory: "256Mi"
status:
image:
tag: v1.0.4
tag: v1.0.5
repository: quay.io/redhat-gpte/babylon-catalog-status
pullPolicy: IfNotPresent
replicaCount: 1
Expand Down

0 comments on commit 91acca2

Please sign in to comment.