mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Issues:
1. When the name of NETWORK_NAME or NS in file "network" (i.e., the namespace in k8s) is changed from "test-network", the resources in the k8s cluster cannot be created successfully when the command "./network up" is executed.
Error message: error: the namespace from the provided object "test-network" does not match the namespace "xxxxxx". You must pass '--namespace=test-network' to perform this operation.
2. org2-cc.yaml is not completed.
Fix:
1. Replace "test-network" in yaml files in folder "kube" with "${NS}".
2. Complete "org2-cc-template.yaml" by referring to "org1-cc-template.yaml".
Signed-off-by: destinysky <kangrui10@126.com>
124 lines
2.9 KiB
YAML
124 lines
2.9 KiB
YAML
#
|
|
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
---
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: org0-ca-tls-cert
|
|
spec:
|
|
isCA: false
|
|
privateKey:
|
|
algorithm: ECDSA
|
|
size: 256
|
|
dnsNames:
|
|
- localhost
|
|
- org0-ca
|
|
- org0-ca.${NS}.svc.cluster.local
|
|
- org0-ca.${DOMAIN}
|
|
ipAddresses:
|
|
- 127.0.0.1
|
|
secretName: org0-ca-tls-cert
|
|
issuerRef:
|
|
name: org0-tls-cert-issuer
|
|
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: org0-ca
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: org0-ca
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: org0-ca
|
|
spec:
|
|
containers:
|
|
- name: main
|
|
image: ${FABRIC_CONTAINER_REGISTRY}/fabric-ca:${FABRIC_CA_VERSION}
|
|
imagePullPolicy: IfNotPresent
|
|
env:
|
|
- name: FABRIC_CA_SERVER_CA_NAME
|
|
value: "org0-ca"
|
|
- name: FABRIC_CA_SERVER_DEBUG
|
|
value: "false"
|
|
- name: FABRIC_CA_SERVER_HOME
|
|
value: "/var/hyperledger/fabric-ca-server"
|
|
- name: FABRIC_CA_SERVER_TLS_CERTFILE
|
|
value: "/var/hyperledger/fabric/config/tls/tls.crt"
|
|
- name: FABRIC_CA_SERVER_TLS_KEYFILE
|
|
value: "/var/hyperledger/fabric/config/tls/tls.key"
|
|
- name: FABRIC_CA_CLIENT_HOME
|
|
value: "/var/hyperledger/fabric-ca-client"
|
|
ports:
|
|
- containerPort: 443
|
|
volumeMounts:
|
|
- name: fabric-volume
|
|
mountPath: /var/hyperledger
|
|
- name: fabric-config
|
|
mountPath: /var/hyperledger/fabric-ca-server/fabric-ca-server-config.yaml
|
|
subPath: fabric-ca-server-config.yaml
|
|
- name: tls-cert-volume
|
|
mountPath: /var/hyperledger/fabric/config/tls
|
|
readOnly: true
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 443
|
|
initialDelaySeconds: 2
|
|
periodSeconds: 5
|
|
volumes:
|
|
- name: fabric-volume
|
|
persistentVolumeClaim:
|
|
claimName: fabric-org0
|
|
- name: fabric-config
|
|
configMap:
|
|
name: org0-config
|
|
- name: tls-cert-volume
|
|
secret:
|
|
secretName: org0-ca-tls-cert
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: org0-ca
|
|
spec:
|
|
ports:
|
|
- name: https
|
|
port: 443
|
|
protocol: TCP
|
|
selector:
|
|
app: org0-ca
|
|
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/proxy-connect-timeout: 60s
|
|
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
|
|
labels:
|
|
app: org0-ca
|
|
name: org0-ca
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: org0-ca.${DOMAIN}
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: org0-ca
|
|
port:
|
|
name: https
|
|
path: /
|
|
pathType: ImplementationSpecific
|
|
tls:
|
|
- hosts:
|
|
- org0-ca.${DOMAIN}
|