Open AssetOverflow opened 1 year ago
and yes, the spacing/indenting is all done properly on the yml. it's just the commenting box that takes away the indentations
docker logs redpanda
18 rpk: # <-------------line 51 17 tls: 16 enabled: true 15 truststore_file: /certs/ca.crt 14 coredump_dir: /var/lib/redpanda/coredump 13 overprovisioned: true 12 pandaproxy: 11 pandaproxy_api: 10 - address: 0.0.0.0 9 port: 8082 8 advertised_pandaproxy_api: 7 - address: localhost 6 port: 8082 5 schema_registry: 4 schema_registry_api_tls: 3 - key_file: /certs/node.key 2 cert_file: /certs/node.crt 1 truststore_file: /certs/ca.crt 69 enabled: true
after applying all the necessary changes (using the M1 Macbook Pro -- yes i added the lines for "platform": "linux/amd64")
and after being able to spin it up properly and add the ACL principals,
ONLY after tearing it down and adding the last 2 tweaks, does it give me this error:
rpk cluster info Error response from daemon: Container 0646fdf91e5aa4825a24b8ac270f87655c10440449f989a80081d75d3cea06a5 is not running
I double checked and even re-did the whole thing from the beginning, again..
here is my docker-compose.yml:
cat docker-compose.yml version: '3.7' services: redpanda: image: vectorized/redpanda:v22.2.1 container_name: redpanda command:
./volumes/redpanda-var:/var/lib/redpanda/data
console: image: vectorized/console:latest container_name: console entrypoint: /bin/sh command: -c "echo \"$$CONSOLE_CONFIG_FILE\" > /tmp/config.yml; /app/console" environment: CONFIG_FILEPATH: /tmp/config.yml CONSOLE_CONFIG_FILE: | kafka: brokers: ["redpanda:29092"] schemaRegistry: enabled: true urls: ["http://redpanda:8081"] redpanda: adminApi: enabled: true urls: ["http://redpanda:9644"] connect: enabled: true clusters:
redpanda
connect: image: docker.cloudsmith.io/redpanda/connectors/connectors:624ff9e platform: 'linux/amd64' hostname: connect container_name: connect depends_on: