github.com/IBM-Blockchain/fabric-operator@v1.0.4/definitions/console/console-configmap.yaml (about) 1 # 2 # Copyright contributors to the Hyperledger Fabric Operator project 3 # 4 # SPDX-License-Identifier: Apache-2.0 5 # 6 # Licensed under the Apache License, Version 2.0 (the "License"); 7 # you may not use this file except in compliance with the License. 8 # You may obtain a copy of the License at: 9 # 10 # http://www.apache.org/licenses/LICENSE-2.0 11 # 12 # Unless required by applicable law or agreed to in writing, software 13 # distributed under the License is distributed on an "AS IS" BASIS, 14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 # See the License for the specific language governing permissions and 16 # limitations under the License. 17 # 18 19 apiVersion: v1 20 kind: ConfigMap 21 metadata: 22 name: ibpconsole-template-configmap 23 data: 24 settings.yaml: | 25 version: "v2.0" 26 initial_admin: "xyz@ibm.com" 27 auth_scheme: "couchdb" 28 configtxlator: "http://localhost:8083" 29 deployer_url: "http://dev:dev123@localhost:8080" 30 deployer_timeout: 60000 31 db_custom_names: 32 DB_COMPONENTS: athena-components 33 DB_SESSIONS: athena-sessions 34 DB_SYSTEM: athena-system 35 enforce_backend_ssl: false 36 system_channel_id: 'testchainid' 37 dynamic_tls: false 38 dynamic_config: true 39 zone: prod 40 infrastructure: openshift 41 fabric_capabilities: 42 application: 43 - "V1_1" 44 - "V1_2" 45 - "V1_3" 46 - "V1_4_2" 47 - "V2_0" 48 channel: 49 - "V1_3" 50 - "V1_4_2" 51 - "V1_4_3" 52 - "V2_0" 53 orderer: 54 - "V1_1" 55 - "V1_4_2" 56 - "V2_0" 57 cluster_data: 58 # type: 'paid' 59 # zones: 60 # - singleZone 61 feature_flags: 62 import_only_enabled: false 63 read_only_enabled: false 64 create_channel_enabled: true 65 remote_peer_config_enabled: true 66 saas_enabled: true 67 mustgather_enabled: true 68 templates_enabled: false 69 capabilities_enabled: true 70 high_availability: true 71 enable_ou_identifier: true 72 infra_import_options: 73 platform: openshift 74 supported_cas: 75 - openshift 76 - ibmcloud 77 supported_orderers: 78 - openshift 79 - ibmcloud 80 supported_peers: 81 - openshift 82 - ibmcloud 83 #{{- if .Values.app.extraConfig }} 84 #{{ toYaml .Values.app.extraConfig | indent 4 }}