Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added some more core profiles #44

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions docker-compose/kafka.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ services:
mem_limit: 512m
restart: unless-stopped
profiles:
- kafka
- kafka-core
- schema-registry-core
- core
- kafka
- full

kafka:
Expand Down Expand Up @@ -53,8 +55,10 @@ services:
timeout: 10s
retries: 10
profiles:
- kafka
- kafka-core
- schema-registry-core
- core
- kafka
- full

kafka-setup:
Expand All @@ -77,8 +81,10 @@ services:
KAFKA_ZOOKEEPER_CONNECT: ignored
KAFKA_TOPICS: ${INITIAL_KAFKA_TOPICS}
profiles:
- kafka
- kafka-core
- schema-registry-core
- core
- kafka
- full

redpanda:
Expand Down Expand Up @@ -176,8 +182,9 @@ services:
timeout: 10s
retries: 10
profiles:
- kafka
- schema-registry-core
- core
- kafka
- full

networks:
Expand Down
7 changes: 5 additions & 2 deletions docker-compose/oauth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ services:
- OAuth__Mode=Asymmetric
- Simulator__DefaultKafkaRole=*_all
profiles:
- opensearch
- kafka
- kafka-core
- schema-registry-core
- opensearch-core
- core
- kafka
- opensearch
- full

# Not enabled by default
Expand Down
11 changes: 7 additions & 4 deletions docker-compose/os.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,16 @@ services:
ports:
- 9200:9200
- 9600:9600
profiles:
- opensearch
- core
- full
healthcheck:
test: curl -u admin:admin -s -f opensearch:9200/_cat/health > /dev/null || exit 1
interval: 30s
timeout: 10s
retries: 5
profiles:
- opensearch-core
- core
- opensearch
- full

opensearch-configurer:
image: ${DOCKER_REGISTRY-}cheetah-infrastructure-utils-os:latest
Expand All @@ -75,6 +76,8 @@ services:
- ./config/opensearch-configurer/index_templates/:/app/tmp/index_templates/
- ./config/opensearch-configurer/cluster/:/app/tmp/cluster/
profiles:
- opensearch-core
- core
- opensearch
- full

Expand Down
20 changes: 10 additions & 10 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ curl -k -s -H "Authorization: Bearer $ACCESS_TOKEN" $OPENSEARCH_URL/_cat/indices

Here is further explanation on what each profile starts.

| Images / profiles | full | core | kafka | opensearch | observability |
| :------------------: | :---: | :---: | :---: | :--------: | :-----------: |
| Kafka | x | x | x | | |
| OAuth simulator | x | x | x | x | |
| Redpanda console | x | | x | | |
| Schema registry | x | x | x | | |
| Opensearch | x | x | | x | |
| Opensearch dashboard | x | | | x | |
| Prometheus | x | | | | x |
| Grafana | x | | | | x |
| Images / profiles | kafka-core | schema-registry-core | opensearch-core | core | kafka | opensearch | observability | full |
| :------------------: | :--------: | :------------------: | :-------------: | :---: | :---: | :--------: | :-----------: | :---: |
| Kafka | x | x | | x | x | | | x |
| OAuth simulator | x | x | x | x | x | x | | x |
| Redpanda console | | | | | x | | | x |
| Schema registry | | x | | x | x | | | x |
| Opensearch | | | x | x | | x | | x |
| Opensearch dashboard | | | | | | x | | x |
| Prometheus | | | | | | | x | x |
| Grafana | | | | | | | x | x |
Loading