mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
32 lines
554 B
YAML
32 lines
554 B
YAML
#
|
|
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
---
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: org2-tls-cert-issuer
|
|
spec:
|
|
isCA: true
|
|
privateKey:
|
|
algorithm: ECDSA
|
|
size: 256
|
|
commonName: org2.example.com
|
|
secretName: org2-tls-cert-issuer-secret
|
|
issuerRef:
|
|
name: root-tls-cert-issuer
|
|
kind: Issuer
|
|
group: cert-manager.io
|
|
|
|
---
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Issuer
|
|
metadata:
|
|
name: org2-tls-cert-issuer
|
|
spec:
|
|
ca:
|
|
secretName: org2-tls-cert-issuer-secret
|
|
|
|
|