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: infinispan.org/v1 | |
| kind: Infinispan | |
| metadata: | |
| annotations: | |
| infinispan.org/monitoring: 'true' | |
| infinispan.org/operatorPodTargetLabels: >- | |
| com.redhat.component-name,com.redhat.component-type,com.redhat.component-version,com.redhat.product-name,com.redhat.product-version | |
| selfLink: /apis/infinispan.org/v1/namespaces/atest/infinispans/example-infinispan | |
| resourceVersion: '1195423' | |
| name: example-infinispan |
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 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 | |
| docker run -it -p 8080:8080 -v $(pwd):/app-data --entrypoint /bin/bash \ | |
| -e MASTER_URL=http://your.master.com:1111 \ | |
| -e CONSOLE_URL=http://your.console.url.com:2222 \ | |
| -e CHE_URL=http://codeready.url.com:3333 -e RHAMT_URL=http://foo -e CHE_USER_PASSWORD='password' \ | |
| -e KEYCLOAK_URL=http://keycloak.url.com:4444 \ | |
| -e ROUTE_SUBDOMAIN=apps.yoursubdomain.com \ | |
| -e CONTENT_URL_PREFIX="file:///app-data/" \ | |
| -e WORKSHOPS_URLS="file:///app-data/_cloud-native-workshop-module3.yml" \ |
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
| # Created by https://www.gitignore.io/api/node,java,maven | |
| # Edit at https://www.gitignore.io/?templates=node,java,maven | |
| ### Java ### | |
| # Compiled class file | |
| *.class | |
| # Log file | |
| *.log |
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
| # starting the server | |
| kafka_2.12-2.1.1> bin/zookeeper-server-start.sh config/zookeeper.properties | |
| kafka_2.12-2.1.1> bin/kafka-server-start.sh config/server.properties | |
| # Adding topics | |
| bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic topic-mission-event | |
| bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic topic-mission-command | |
| bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic topic-responder-location-update | |
| bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic topic-incident-event |
NewerOlder