Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions components/mintmaker/staging/stone-stg-rh01/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"kite": {
"enabled": true,
"api-url": "https://konflux-kite-api-konflux-kite.apps.stone-stg-rh01.l2vh.p1.openshiftapps.com"
}
}
13 changes: 13 additions & 0 deletions components/mintmaker/staging/stone-stg-rh01/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../base
namespace: mintmaker

configMapGenerator:
- name: controller-config
files:
- config.json

patches:
- path: manager-mount-config-patch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: controller-manager
namespace: system
spec:
template:
spec:
containers:
- name: manager
volumeMounts:
- name: controller-config
mountPath: /etc/mintmaker
volumes:
- name: controller-config
configMap:
name: controller-config
Loading