We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72f3487 commit 7bb2d67Copy full SHA for 7bb2d67
hack/kind/apim/values.yaml
@@ -52,6 +52,16 @@ ui:
52
53
portal:
54
enabled: false
55
+ image:
56
+ repository: gravitee-apim-portal
57
+ tag: dev
58
+ pullPolicy: IfNotPresent
59
+ ingress:
60
+ enabled: false
61
+ service:
62
+ type: NodePort
63
+ nodePort: 30081
64
+ baseURL: http://localhost:30083/portal
65
66
gateway:
67
image:
hack/scripts/run-kind.mjs
@@ -46,7 +46,10 @@ const IMAGES = new Map([
46
`${APIM_REGISTRY}/apim-management-ui:${APIM_TAG}`,
47
`gravitee-apim-management-ui:dev`,
48
],
49
- [`mongo:6.0.15-jammy`, `mongo:6.0.15-jammy`],
+ [
50
+ `${APIM_REGISTRY}/apim-portal-ui:${APIM_TAG}`,
51
+ `gravitee-apim-portal:dev`,
+ ],
[`mccutchen/go-httpbin:latest`, `go-httpbin:dev`],
]);
0 commit comments