Skip to content

Commit

Permalink
fix(csv): add related images for storage and db (#812)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebaron authored May 3, 2024
1 parent 4a72b4c commit 6e7e17e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
10 changes: 9 additions & 1 deletion bundle/manifests/cryostat-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ metadata:
capabilities: Seamless Upgrades
categories: Monitoring, Developer Tools
containerImage: quay.io/cryostat/cryostat-operator:3.0.0-dev
createdAt: "2024-05-03T13:22:52Z"
createdAt: "2024-05-03T20:13:14Z"
description: JVM monitoring and profiling tool
operatorframework.io/initialization-resource: |-
{
Expand Down Expand Up @@ -1158,6 +1158,10 @@ spec:
value: quay.io/cryostat/cryostat-grafana-dashboard:latest
- name: RELATED_IMAGE_REPORTS
value: quay.io/cryostat/cryostat-reports:latest
- name: RELATED_IMAGE_STORAGE
value: quay.io/cryostat/cryostat-storage:latest
- name: RELATED_IMAGE_DATABASE
value: quay.io/cryostat/cryostat-db:latest
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
Expand Down Expand Up @@ -1332,6 +1336,10 @@ spec:
name: grafana
- image: quay.io/cryostat/cryostat-reports:latest
name: reports
- image: quay.io/cryostat/cryostat-storage:latest
name: storage
- image: quay.io/cryostat/cryostat-db:latest
name: database
version: 3.0.0-dev
webhookdefinitions:
- admissionReviewVersions:
Expand Down
4 changes: 4 additions & 0 deletions config/default/image_tag_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ spec:
value: "quay.io/cryostat/cryostat-grafana-dashboard:latest"
- name: RELATED_IMAGE_REPORTS
value: "quay.io/cryostat/cryostat-reports:latest"
- name: RELATED_IMAGE_STORAGE
value: "quay.io/cryostat/cryostat-storage:latest"
- name: RELATED_IMAGE_DATABASE
value: "quay.io/cryostat/cryostat-db:latest"
18 changes: 9 additions & 9 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ resources:
generatorOptions:
disableNameSuffixHash: true

# patchesJson6902:
# - path: patches/force_openshift_patch.yaml
# target:
# group: apps
# kind: Deployment
# name: controller-manager
# namespace: system
# version: v1

configMapGenerator:
- files:
- controller_manager_config.yaml
Expand All @@ -14,12 +23,3 @@ images:
- name: controller
newName: quay.io/cryostat/cryostat-operator
newTag: 3.0.0-dev

# patchesJson6902:
# - path: patches/force_openshift_patch.yaml
# target:
# group: apps
# kind: Deployment
# name: controller-manager
# namespace: system
# version: v1
4 changes: 4 additions & 0 deletions hack/image_tag_patch.yaml.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ spec:
value: "${GRAFANA_IMG}"
- name: RELATED_IMAGE_REPORTS
value: "${REPORTS_IMG}"
- name: RELATED_IMAGE_STORAGE
value: "${STORAGE_IMG}"
- name: RELATED_IMAGE_DATABASE
value: "${DATABASE_IMG}"

0 comments on commit 6e7e17e

Please sign in to comment.