From 2f23d0614edd3bba4e876f600e9af9855a987351 Mon Sep 17 00:00:00 2001
From: Torsten Gippert <46532698+tgip-work@users.noreply.github.com>
Date: Thu, 14 Apr 2022 16:16:42 +0200
Subject: [PATCH] remove _old_chart blockchain-explorer due to license issues
(#39)
---
_old_charts/blockchain-explorer/.helmignore | 23 ----
_old_charts/blockchain-explorer/Chart.yaml | 24 ----
.../blockchain-explorer/templates/NOTES.txt | 9 --
.../templates/api-deployment.yaml | 50 ---------
.../templates/api-service.yaml | 19 ----
.../templates/explorer-configmap.yaml | 104 ------------------
.../templates/ingestion-deployment.yaml | 46 --------
.../templates/mongodb-deployment.yaml | 42 -------
.../templates/mongodb-service.yaml | 19 ----
.../templates/nginx-deployment.yaml | 48 --------
.../templates/nginx-service.yaml | 20 ----
.../quorum-examples-net-networkpolicy.yaml | 14 ---
.../templates/web-deployment.yaml | 40 -------
.../templates/web-service.yaml | 19 ----
_old_charts/blockchain-explorer/values.yaml | 6 -
15 files changed, 483 deletions(-)
delete mode 100644 _old_charts/blockchain-explorer/.helmignore
delete mode 100644 _old_charts/blockchain-explorer/Chart.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/NOTES.txt
delete mode 100644 _old_charts/blockchain-explorer/templates/api-deployment.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/api-service.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/explorer-configmap.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/ingestion-deployment.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/mongodb-deployment.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/mongodb-service.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/nginx-deployment.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/nginx-service.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/quorum-examples-net-networkpolicy.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/web-deployment.yaml
delete mode 100644 _old_charts/blockchain-explorer/templates/web-service.yaml
delete mode 100644 _old_charts/blockchain-explorer/values.yaml
diff --git a/_old_charts/blockchain-explorer/.helmignore b/_old_charts/blockchain-explorer/.helmignore
deleted file mode 100644
index 0e8a0eb3..00000000
--- a/_old_charts/blockchain-explorer/.helmignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# Patterns to ignore when building packages.
-# This supports shell glob matching, relative path matching, and
-# negation (prefixed with !). Only one pattern per line.
-.DS_Store
-# Common VCS dirs
-.git/
-.gitignore
-.bzr/
-.bzrignore
-.hg/
-.hgignore
-.svn/
-# Common backup files
-*.swp
-*.bak
-*.tmp
-*.orig
-*~
-# Various IDEs
-.project
-.idea/
-*.tmproj
-.vscode/
diff --git a/_old_charts/blockchain-explorer/Chart.yaml b/_old_charts/blockchain-explorer/Chart.yaml
deleted file mode 100644
index 82d23fcd..00000000
--- a/_old_charts/blockchain-explorer/Chart.yaml
+++ /dev/null
@@ -1,24 +0,0 @@
-apiVersion: v2
-name: blockchain-explorer
-description: A Helm chart to deploy quorum blockchain explorer 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: 0.1.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.0.0"
diff --git a/_old_charts/blockchain-explorer/templates/NOTES.txt b/_old_charts/blockchain-explorer/templates/NOTES.txt
deleted file mode 100644
index 743ea366..00000000
--- a/_old_charts/blockchain-explorer/templates/NOTES.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-1. Get the application URL by running these commands:
-
-NOTE: It may take a few minutes for the LoadBalancer IP to be available.
-Execute in the command line :
-
- kubectl get svc nginx
-
-Copy the EXTERNAL-IP and paste it in a browser
-
diff --git a/_old_charts/blockchain-explorer/templates/api-deployment.yaml b/_old_charts/blockchain-explorer/templates/api-deployment.yaml
deleted file mode 100644
index 378d2942..00000000
--- a/_old_charts/blockchain-explorer/templates/api-deployment.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: api
- name: api
-spec:
- replicas: 1
- selector:
- matchLabels:
- io.kompose.service: api
- strategy: {}
- template:
- metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.network/quorum-examples-net: "true"
- io.kompose.service: api
- spec:
- containers:
- - env:
- - name: MONGO_CLIENT_URI
- value: mongodb://mongodb:27017
- - name: MONGO_DB_NAME
- value: epirus
- - name: NODE_ENDPOINT
- valueFrom:
- configMapKeyRef:
- name: explorer-configs
- # Specify the key associated with the value
- key: QUORUM_NODE_URL
- - name: REINDEX_ENDPOINT
- value: http://ingestion/reindex/
- image: web3labs/epirus-free-api:latest
- imagePullPolicy: ""
- name: api
- resources: {}
- ports:
- - containerPort: 8090
- restartPolicy: Always
- serviceAccountName: ""
- volumes: null
-status: {}
diff --git a/_old_charts/blockchain-explorer/templates/api-service.yaml b/_old_charts/blockchain-explorer/templates/api-service.yaml
deleted file mode 100644
index 82988335..00000000
--- a/_old_charts/blockchain-explorer/templates/api-service.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: api
- name: api
-spec:
- ports:
- - name: "8090"
- port: 8090
- targetPort: 8090
- selector:
- io.kompose.service: api
-status:
- loadBalancer: {}
diff --git a/_old_charts/blockchain-explorer/templates/explorer-configmap.yaml b/_old_charts/blockchain-explorer/templates/explorer-configmap.yaml
deleted file mode 100644
index 5f9a3c32..00000000
--- a/_old_charts/blockchain-explorer/templates/explorer-configmap.yaml
+++ /dev/null
@@ -1,104 +0,0 @@
-apiVersion: v1
-data:
- QUORUM_NODE_URL: {{ .Values.quorum.node_rpc_address | quote }}
- 5xx.html: |
-
-
-
-
- Epirus | Blockchain Explorer
-
-
-
-
-
-
-
-
-
-
- nginx.conf: "events { }\n\nhttp {\n server {\n listen 80;\n charset utf-8;\n\n
- \ location /api/ {\n proxy_pass http://api:8090/;\n }\n\n location
- / {\n proxy_pass http://web:3000/;\n }\n\n error_page 500 502 503 504
- /5xx.html;\n location /5xx.html {\n root /www/error_pages/;\n } \n
- \ }\n}"
-kind: ConfigMap
-metadata:
- name: explorer-configs
-
diff --git a/_old_charts/blockchain-explorer/templates/ingestion-deployment.yaml b/_old_charts/blockchain-explorer/templates/ingestion-deployment.yaml
deleted file mode 100644
index 981f3c72..00000000
--- a/_old_charts/blockchain-explorer/templates/ingestion-deployment.yaml
+++ /dev/null
@@ -1,46 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: ingestion
- name: ingestion
-spec:
- replicas: 1
- selector:
- matchLabels:
- io.kompose.service: ingestion
- strategy: {}
- template:
- metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.network/quorum-examples-net: "true"
- io.kompose.service: ingestion
- spec:
- containers:
- - env:
- - name: MONGO_CLIENT_URI
- value: mongodb://mongodb:27017
- - name: MONGO_DB_NAME
- value: epirus
- - name: NODE_ENDPOINT
- valueFrom:
- configMapKeyRef:
- name: explorer-configs
- # Specify the key associated with the value
- key: QUORUM_NODE_URL
- image: web3labs/epirus-free-ingestion:latest
- imagePullPolicy: ""
- name: ingestion
- resources: {}
- restartPolicy: Always
- serviceAccountName: ""
- volumes: null
-status: {}
diff --git a/_old_charts/blockchain-explorer/templates/mongodb-deployment.yaml b/_old_charts/blockchain-explorer/templates/mongodb-deployment.yaml
deleted file mode 100644
index 8dcd5500..00000000
--- a/_old_charts/blockchain-explorer/templates/mongodb-deployment.yaml
+++ /dev/null
@@ -1,42 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: mongodb
- name: mongodb
-spec:
- replicas: 1
- selector:
- matchLabels:
- io.kompose.service: mongodb
- strategy: {}
- template:
- metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.network/quorum-examples-net: "true"
- io.kompose.service: mongodb
- spec:
- containers:
- - command:
- - mongod
- - --logpath=/dev/null
- - --bind_ip
- - 0.0.0.0
- image: mongo:latest
- imagePullPolicy: ""
- name: mongodb
- ports:
- - containerPort: 27017
- resources: {}
- restartPolicy: Always
- serviceAccountName: ""
- volumes: null
-status: {}
diff --git a/_old_charts/blockchain-explorer/templates/mongodb-service.yaml b/_old_charts/blockchain-explorer/templates/mongodb-service.yaml
deleted file mode 100644
index b130d80e..00000000
--- a/_old_charts/blockchain-explorer/templates/mongodb-service.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: mongodb
- name: mongodb
-spec:
- ports:
- - name: "27017"
- port: 27017
- targetPort: 27017
- selector:
- io.kompose.service: mongodb
-status:
- loadBalancer: {}
diff --git a/_old_charts/blockchain-explorer/templates/nginx-deployment.yaml b/_old_charts/blockchain-explorer/templates/nginx-deployment.yaml
deleted file mode 100644
index 1eebb52c..00000000
--- a/_old_charts/blockchain-explorer/templates/nginx-deployment.yaml
+++ /dev/null
@@ -1,48 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: nginx
- name: nginx
-spec:
- replicas: 1
- selector:
- matchLabels:
- io.kompose.service: nginx
- strategy:
- type: Recreate
- template:
- metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.network/quorum-examples-net: "true"
- io.kompose.service: nginx
- spec:
- containers:
- - image: nginx:latest
- imagePullPolicy: ""
- name: nginx
- ports:
- - containerPort: 80
- resources: {}
- volumeMounts:
- - name: nginx-config-volume
- mountPath: /etc/nginx/nginx.conf
- subPath: nginx.conf
- - name: nginx-config-volume
- mountPath: /www/error_pages/5xx.html
- subPath: 5xx.html
- restartPolicy: Always
- serviceAccountName: ""
- volumes:
- - name: nginx-config-volume
- configMap:
- name: explorer-configs
-status: {}
diff --git a/_old_charts/blockchain-explorer/templates/nginx-service.yaml b/_old_charts/blockchain-explorer/templates/nginx-service.yaml
deleted file mode 100644
index e4d258c9..00000000
--- a/_old_charts/blockchain-explorer/templates/nginx-service.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: nginx
- name: nginx
-spec:
- ports:
- - name: "80"
- port: 80
- targetPort: 80
- selector:
- io.kompose.service: nginx
- type: LoadBalancer
-status:
- loadBalancer: {}
diff --git a/_old_charts/blockchain-explorer/templates/quorum-examples-net-networkpolicy.yaml b/_old_charts/blockchain-explorer/templates/quorum-examples-net-networkpolicy.yaml
deleted file mode 100644
index 4d011c60..00000000
--- a/_old_charts/blockchain-explorer/templates/quorum-examples-net-networkpolicy.yaml
+++ /dev/null
@@ -1,14 +0,0 @@
-apiVersion: networking.k8s.io/v1
-kind: NetworkPolicy
-metadata:
- creationTimestamp: null
- name: quorum-examples-net
-spec:
- ingress:
- - from:
- - podSelector:
- matchLabels:
- io.kompose.network/quorum-examples-net: "true"
- podSelector:
- matchLabels:
- io.kompose.network/quorum-examples-net: "true"
diff --git a/_old_charts/blockchain-explorer/templates/web-deployment.yaml b/_old_charts/blockchain-explorer/templates/web-deployment.yaml
deleted file mode 100644
index fcac2034..00000000
--- a/_old_charts/blockchain-explorer/templates/web-deployment.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: web
- name: web
-spec:
- replicas: 1
- selector:
- matchLabels:
- io.kompose.service: web
- strategy: {}
- template:
- metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.network/quorum-examples-net: "true"
- io.kompose.service: web
- spec:
- containers:
- - env:
- - name: API_URL
- value: /api
- image: web3labs/epirus-free-web:latest
- imagePullPolicy: ""
- name: web
- resources: {}
- ports:
- - containerPort: 3000
- restartPolicy: Always
- serviceAccountName: ""
- volumes: null
-status: {}
diff --git a/_old_charts/blockchain-explorer/templates/web-service.yaml b/_old_charts/blockchain-explorer/templates/web-service.yaml
deleted file mode 100644
index c5c54318..00000000
--- a/_old_charts/blockchain-explorer/templates/web-service.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- annotations:
- kompose.cmd: kompose convert
- kompose.version: 1.21.0 (992df58d8)
- creationTimestamp: null
- labels:
- io.kompose.service: web
- name: web
-spec:
- ports:
- - name: "3000"
- port: 3000
- targetPort: 3000
- selector:
- io.kompose.service: web
-status:
- loadBalancer: {}
diff --git a/_old_charts/blockchain-explorer/values.yaml b/_old_charts/blockchain-explorer/values.yaml
deleted file mode 100644
index 66ae7971..00000000
--- a/_old_charts/blockchain-explorer/values.yaml
+++ /dev/null
@@ -1,6 +0,0 @@
-# Default values for blockchain-explorer.
-# This is a YAML-formatted file.
-# Declare variables to be passed into your templates.
-
-quorum:
- node_rpc_address: "http://quorum-node-0-rpc:8545"