Skip to content

Commit

Permalink
build(insights): consume out-of-tree Insights module (#800)
Browse files Browse the repository at this point in the history
* build(insights): consume out-of-tree Insights module

* Upgrade dependencies

* Fix environment variable name

* Remove unneeded replace directives
  • Loading branch information
ebaron authored Apr 25, 2024
1 parent 53d2b73 commit 9593e8a
Show file tree
Hide file tree
Showing 29 changed files with 1,114 additions and 3,415 deletions.
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=cryostat-operator
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.32.0
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.31.0
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3

Expand Down
68 changes: 48 additions & 20 deletions 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-04-16T21:08:10Z"
createdAt: "2024-04-25T15:33:04Z"
description: JVM monitoring and profiling tool
operatorframework.io/initialization-resource: |-
{
Expand All @@ -69,7 +69,7 @@ metadata:
}
}
}
operators.operatorframework.io/builder: operator-sdk-v1.32.0
operators.operatorframework.io/builder: operator-sdk-v1.31.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: github.com/cryostatio/cryostat-operator
support: Cryostat Community
Expand Down Expand Up @@ -760,7 +760,7 @@ spec:
- description: Security Context to apply to the JFR Data Source container.
displayName: Data Source Security Context
path: securityOptions.dataSourceSecurityContext
- description: Security Context to apply to the storage container.
- description: Security Context to apply to the database container.
displayName: Database Security Context
path: securityOptions.databaseSecurityContext
- description: Security Context to apply to the Grafana container.
Expand Down Expand Up @@ -899,15 +899,6 @@ spec:
spec:
clusterPermissions:
- rules:
- apiGroups:
- ""
resources:
- configmaps
- configmaps/finalizers
- secrets
- services
verbs:
- '*'
- apiGroups:
- ""
resources:
Expand Down Expand Up @@ -937,19 +928,22 @@ spec:
verbs:
- get
- apiGroups:
- apps
- ""
resourceNames:
- pull-secret
resources:
- daemonsets
- deployments
- replicasets
- statefulsets
- secrets
verbs:
- '*'
- get
- list
- watch
- apiGroups:
- apps
resources:
- daemonsets
- deployments
- deployments/finalizers
- replicasets
- statefulsets
verbs:
- '*'
- apiGroups:
Expand Down Expand Up @@ -1114,7 +1108,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
- name: NAMESPACE
- name: OPERATOR_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
Expand Down Expand Up @@ -1197,6 +1191,40 @@ spec:
verbs:
- create
- patch
- apiGroups:
- ""
resources:
- configmaps
verbs:
- create
- delete
- get
- list
- update
- watch
- apiGroups:
- ""
resources:
- configmaps/finalizers
- secrets
- services
verbs:
- create
- get
- list
- update
- watch
- apiGroups:
- apps
resources:
- deployments
- deployments/finalizers
verbs:
- create
- get
- list
- update
- watch
- apiGroups:
- monitoring.coreos.com
resources:
Expand Down
721 changes: 350 additions & 371 deletions bundle/manifests/operator.cryostat.io_cryostats.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ annotations:
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: cryostat-operator
operators.operatorframework.io.bundle.channels.v1: alpha
operators.operatorframework.io.metrics.builder: operator-sdk-v1.32.0
operators.operatorframework.io.metrics.builder: operator-sdk-v1.31.0
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3

Expand Down
Loading

0 comments on commit 9593e8a

Please sign in to comment.