This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
total 56 | |
drwxr-xr-x 5 root root 4096 Jun 4 22:42 . | |
drwxr-xr-x 1 root root 4096 Jun 4 22:42 .. | |
-rw-r--r-- 1 root root 0 Jun 4 22:42 bootstrapped | |
drwxr-xr-x 4 root root 4096 Jun 4 22:00 cas | |
-rw-r--r-- 1 root root 6891 Jun 4 22:42 configtx.yaml | |
drwxr-xr-x 4 root root 4096 Jun 4 22:00 crypto-config | |
-rw-r--r-- 1 root root 16 Jun 4 21:59 index.html | |
drwxr-xr-x 2 root root 16384 Jun 4 21:59 lost+found | |
-rw-r--r-- 1 root root 9070 Jun 4 22:42 orderer.block |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
kind: Deployment | |
apiVersion: extensions/v1beta1 | |
metadata: | |
name: {{ template "ibm-blockchain-network.name" . }}-debug-nfs | |
labels: | |
app: {{ template "ibm-blockchain-network.name" . }} | |
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NAME: volted-buffoon | |
LAST DEPLOYED: Mon Jun 4 15:11:56 2018 | |
NAMESPACE: default | |
STATUS: DEPLOYED | |
RESOURCES: | |
==> v1/Pod(related) | |
NAME READY STATUS RESTARTS AGE | |
volted-buffoon-ibm-blockchain-network-ca-78899ff959-vql4k 0/1 Pending 0 0s | |
ibm-blockchain-network-debug-nfs-5856796f6b-fr87x 0/1 Pending 0 0s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: storage.k8s.io/v1 | |
kind: StorageClass | |
metadata: | |
name: ssd | |
provisioner: kubernetes.io/gce-pd | |
parameters: | |
type: pd-ssd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: nfs | |
spec: | |
storageClassName: default | |
accessModes: | |
- ReadWriteOnce | |
resources: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Derived closely from https://github.com/Soluto/golang-docker-healthcheck-example | |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: datadir | |
spec: | |
storageClassName: standard | |
accessModes: | |
- ReadWriteOnce | |
resources: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: storage.k8s.io/v1 | |
kind: StorageClass | |
metadata: | |
name: ssd | |
provisioner: kubernetes.io/gce-pd | |
parameters: | |
type: pd-ssd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: ethereum | |
spec: | |
storageClassName: standard | |
accessModes: | |
- ReadWriteOnce | |
resources: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
kind: Deployment | |
apiVersion: extensions/v1beta1 | |
metadata: | |
name: node-red | |
labels: | |
run: node-red | |
spec: | |
replicas: 1 | |
selector: |