[stable/ethereum] add repo archive notice (#24104)

* [stable/ethereum] add repo archive notice

Signed-off-by: Scott Rigby <scott@r6by.com>

* [stable/ethereum] use apps/v1

Signed-off-by: Carlos Panato <ctadeu@gmail.com>

Co-authored-by: Carlos Panato <ctadeu@gmail.com>
This commit is contained in:
Scott Rigby
2020-11-10 03:00:39 -08:00
committed by GitHub
co-authored by Carlos Panato
parent 7ca29798fd
commit d6de34a19d
6 changed files with 19 additions and 15 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: ethereum
version: 1.0.0
version: 1.0.1
appVersion: v1.7.3
description: private Ethereum network Helm chart for Kubernetes
keywords:
+5 -1
View File
@@ -1,3 +1,8 @@
# ⚠️ Repo Archive Notice
As of Nov 13, 2020, charts in this repo will no longer be updated.
For more information, see the Helm Charts [Deprecation and Archive Notice](https://github.com/helm/charts#%EF%B8%8F-deprecation-and-archive-notice), and [Update](https://helm.sh/blog/charts-repo-deprecation/).
# ethereum
[Ethereum](https://www.ethereum.org/) is a decentralized platform for building applications using blockchain.
@@ -101,4 +106,3 @@ Alternatively, a YAML file that specifies the values for the above parameters ca
```console
$ helm install stable/ethereum -f values.yaml
```
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "ethereum.fullname" . }}-bootnode
@@ -27,7 +27,7 @@ spec:
image: {{ .Values.bootnode.image.repository }}:{{ .Values.bootnode.image.tag }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
command: ["/bin/sh"]
args:
args:
- "-c"
- "bootnode --nodekey=/etc/bootnode/node.key --verbosity=4"
volumeMounts:
@@ -71,4 +71,4 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{- end }}
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "ethereum.fullname" . }}-ethstats
@@ -38,4 +38,4 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{- end }}
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "ethereum.fullname" . }}-geth-miner
@@ -27,7 +27,7 @@ spec:
image: {{ .Values.geth.image.repository }}:{{ .Values.geth.image.tag }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
command: ["/bin/sh"]
args:
args:
- "-c"
- "geth --bootnodes=`cat /root/.ethereum/bootnodes` --mine --etherbase=0 --networkid=${NETWORK_ID} --ethstats=${HOSTNAME}:${ETHSTATS_SECRET}@${ETHSTATS_SVC} --verbosity=5"
env:
@@ -94,7 +94,7 @@ spec:
volumes:
- name: data
emptyDir: {}
- name: config
- name: config
configMap:
name: {{ template "ethereum.fullname" . }}-geth-config
- name: account
@@ -103,4 +103,4 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{- end }}
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "ethereum.fullname" . }}-geth-tx
@@ -27,7 +27,7 @@ spec:
image: {{ .Values.geth.image.repository }}:{{ .Values.geth.image.tag }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
command: ["/bin/sh"]
args:
args:
- "-c"
- "geth --bootnodes=`cat /root/.ethereum/bootnodes` --rpc --rpcaddr 0.0.0.0 --rpcapi={{ .Values.geth.tx.args.rpcapi }} --rpccorsdomain='*' --ws --networkid=${NETWORK_ID} --ethstats=${HOSTNAME}:${ETHSTATS_SECRET}@${ETHSTATS_SVC} --verbosity=5"
env:
@@ -98,7 +98,7 @@ spec:
volumes:
- name: data
emptyDir: {}
- name: config
- name: config
configMap:
name: {{ template "ethereum.fullname" . }}-geth-config
- name: account
@@ -107,4 +107,4 @@ spec:
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{- end }}