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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
27 changes: 20 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,26 @@ update-mongodb:
@helm pull -d external --untar bitnami/$(patsubst update-%,%,$@)
@echo ""

update-nifi-cluster:
@echo "Updating NiFi Cluster"
@rm -rf external/$(patsubst update-%,%,$@)
@mkdir -p /tmp/nifikop
@git clone https://github.com/konpyutaika/nifikop.git /tmp/nifikop
@mkdir -p external/$(patsubst update-%,%,$@)
@cp -r /tmp/nifikop/helm/nifi-cluster/* external/$(patsubst update-%,%,$@)/
@rm -rf /tmp/nifikop
@echo ""

update-nifikop:
@echo "Updating NiFiKop"
@rm -rf external/$(patsubst update-%,%,$@)
@mkdir -p /tmp/nifikop
@git clone https://github.com/konpyutaika/nifikop.git /tmp/nifikop
@mkdir -p external/$(patsubst update-%,%,$@)
@cp -r /tmp/nifikop/helm/nifikop/* external/$(patsubst update-%,%,$@)/
@rm -rf /tmp/nifikop
@echo ""

update-postgresql:
@echo "Updating postgresql"
@helm repo add bitnami https://charts.bitnami.com/bitnami
Expand Down Expand Up @@ -157,10 +177,3 @@ update-velero:
@helm repo add $(patsubst update-%,%,$@) https://vmware-tanzu.github.io/helm-charts
@helm pull -d external --untar $(patsubst update-%,%,$@)/$(patsubst update-%,%,$@)
@echo ""

update-nifi:
@echo "Updating NiFi"
@rm -rf external/$(patsubst update-%,%,$@)
@helm repo add $(patsubst update-%,%,$@) https://cetic.github.io/helm-charts
@helm pull -d external --untar $(patsubst update-%,%,$@)/$(patsubst update-%,%,$@)
@echo ""
10 changes: 2 additions & 8 deletions charts/radar-nifi/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store

# Common VCS dirs
.git/
.gitignore
Expand All @@ -11,19 +10,14 @@
.hg/
.hgignore
.svn/

# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~

# Various IDEs
.project
.idea/
*.tmproj

.circleci/

doc/
.github
.vscode/
19 changes: 5 additions & 14 deletions charts/radar-nifi/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
dependencies:
- name: zookeeper
repository: https://charts.bitnami.com/bitnami
version: 9.2.7
- name: nifi-registry
repository: https://dysnix.github.io/charts/
version: 1.0.0
- name: ca
repository: ""
version: 1.0.1
- name: openldap
repository: https://charts.helm.sh/stable
version: 1.2.7
digest: sha256:c89c528c8e6bf7b2dfca235b3d925f31c638cc0bb3ae6e27b0c7d39214b22c31
generated: "2025-07-07T12:57:36.223453+01:00"
- name: nifi-cluster
repository: file://../../external/nifi-cluster
version: 1.14.1
digest: sha256:93046787aa8ca1cd7f7b26d671f6a19806f685346d8091f01ce47389788082fe
generated: "2025-07-21T10:35:35.756186189+02:00"
56 changes: 25 additions & 31 deletions charts/radar-nifi/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,28 @@
---
apiVersion: v2
name: radar-nifi
version: 2.0.0
appVersion: 2.3.0
description: Apache NiFi is a software project from the Apache Software Foundation designed to automate the flow of data between software systems.
keywords:
- nifi
- data
- process
home: https://nifi.apache.org/
icon: https://svn.apache.org/repos/asf/nifi/site/trunk/images/niFi-logo-horizontal-scaled.png
maintainers:
- name: Heet
email: heet.sankesara@kcl.ac.uk
url: https://github.com/Hsankesara
description: A Helm chart for Kubernetes

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
dependencies:
- condition: zookeeper.enabled
name: zookeeper
repository: https://charts.bitnami.com/bitnami
version: 9.2.7
- alias: registry
condition: registry.enabled
name: nifi-registry
repository: https://dysnix.github.io/charts/
version: 1.0.0
- condition: ca.enabled
name: ca
repository: ""
version: 1.0.1
- condition: openldap.enabled
name: openldap
repository: https://charts.helm.sh/stable
version: ~1.2.4
- name: nifi-cluster
version: 1.14.1
repository: file://../../external/nifi-cluster
201 changes: 0 additions & 201 deletions charts/radar-nifi/LICENSE

This file was deleted.

Loading