Skip to content
Merged
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
2 changes: 1 addition & 1 deletion charts/network-observability-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: network-observability-operator
description: Helm chart for deploying the Network Observability Operator with Loki-backed flow storage
type: application
version: 2.0.0
version: 2.0.1
appVersion: "1.11"
dependencies:
- name: helper-status-checker
Expand Down

This file was deleted.

17 changes: 0 additions & 17 deletions charts/network-observability-operator/templates/operatorgroup.yaml

This file was deleted.

21 changes: 21 additions & 0 deletions charts/network-observability-operator/templates/subscription.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
{{- range .Values.subscriptions }}
{{- if .enabled }}
{{- if .createNamespace }}
---
apiVersion: v1
kind: Namespace
metadata:
name: {{ .namespace }}
annotations:
argocd.argoproj.io/sync-wave: "-1"
{{- end }}
{{- if .createOperatorGroup }}
---
apiVersion: operators.coreos.com/v1
kind: OperatorGroup
metadata:
name: {{ .name }}
namespace: {{ .namespace }}
annotations:
argocd.argoproj.io/sync-wave: "0"
spec:
upgradeStrategy: Default
{{- end }}
---
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
Expand Down
9 changes: 4 additions & 5 deletions charts/network-observability-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ subscriptions:
sourceNamespace: openshift-marketplace
startingCSV: ""
enabled: true
createNamespace: true
createOperatorGroup: true
- name: loki-operator
namespace: openshift-operators-redhat
channel: stable-6.2
Expand All @@ -18,11 +20,8 @@ subscriptions:
startingCSV: loki-operator.v6.2.0
enabled: true
roleArn: ""

operatorGroup:
create: true
name: netobserv-operator
namespace: openshift-netobserv-operator
createNamespace: true
createOperatorGroup: true

# Loki Stack configuration
lokiStack:
Expand Down
Loading