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
| #!/bin/bash | |
| # Variables ######################################## | |
| KUBERNETES_DASHBOARD_ENABLED=false | |
| CERT_MANAGER_ENABLED=true | |
| JENKINS_ENABLED=false | |
| SONARQUBE_ENABLED=false | |
| ISTIO_ENABLED=false | |
| RANCHER_ENABLED=false |
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
| ############################################################################# | |
| # This is a configuration file for the fabric-ca-server command. | |
| # | |
| # COMMAND LINE ARGUMENTS AND ENVIRONMENT VARIABLES | |
| # ------------------------------------------------ | |
| # Each configuration element can be overridden via command line | |
| # arguments or environment variables. The precedence for determining | |
| # the value of each element is as follows: | |
| # 1) command line argument | |
| # Examples: |
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
| ############################################################################# | |
| # This is a configuration file for the fabric-ca-server command. | |
| # | |
| # COMMAND LINE ARGUMENTS AND ENVIRONMENT VARIABLES | |
| # ------------------------------------------------ | |
| # Each configuration element can be overridden via command line | |
| # arguments or environment variables. The precedence for determining | |
| # the value of each element is as follows: | |
| # 1) command line argument | |
| # Examples: |
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
| ############################################################################# | |
| # This is a configuration file for the fabric-ca-server command. | |
| # | |
| # COMMAND LINE ARGUMENTS AND ENVIRONMENT VARIABLES | |
| # ------------------------------------------------ | |
| # Each configuration element can be overridden via command line | |
| # arguments or environment variables. The precedence for determining | |
| # the value of each element is as follows: | |
| # 1) command line argument | |
| # Examples: |
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
| ############################################################################# | |
| # This is a configuration file for the fabric-ca-server command. | |
| # | |
| # COMMAND LINE ARGUMENTS AND ENVIRONMENT VARIABLES | |
| # ------------------------------------------------ | |
| # Each configuration element can be overridden via command line | |
| # arguments or environment variables. The precedence for determining | |
| # the value of each element is as follows: | |
| # 1) command line argument | |
| # Examples: |
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: Service | |
| metadata: | |
| name: ca-orderer | |
| labels: | |
| app: ca-orderer | |
| spec: | |
| type: ClusterIP | |
| selector: | |
| app: ca-orderer |
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: Service | |
| metadata: | |
| name: ca-org1 | |
| labels: | |
| app: ca-org1 | |
| spec: | |
| type: ClusterIP | |
| selector: | |
| app: ca-org1 # deploymenti bu selector üzerinden bulur.deploymentdeki matchLabels ile aynı olmalı. |
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: Service | |
| metadata: | |
| name: ca-org2 | |
| labels: | |
| app: ca-org2 | |
| spec: | |
| type: ClusterIP | |
| selector: | |
| app: ca-org2 |
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: Service | |
| metadata: | |
| name: ca-org3 | |
| labels: | |
| app: ca-org3 | |
| spec: | |
| type: ClusterIP | |
| selector: | |
| app: ca-org3 # deploymenti bu selector üzerinden bulur.deploymentdeki matchLabels ile aynı olmalı. |
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: PersistentVolume | |
| metadata: | |
| name: fabricfiles-pv | |
| labels: | |
| name: fabricfiles | |
| spec: | |
| storageClassName: default | |
| capacity: | |
| storage: 5Gi |