gpt4 book ai didi

confluent-platform - 如何在 docker 上使用 Confluent CLI

转载 作者:行者123 更新时间:2023-12-03 16:35:22 27 4
gpt4 key购买 nike

我已经在 https://docs.confluent.io/current/quickstart/ce-docker-quickstart.html 的帮助下使用 docker 在我的 Windows 10 上启动了 Confluent Platform .现在我想尝试使用 Confluent CLI。但是我没有看到任何关于如何在 docker 上使用 confluent cli 的文档。你能建议我怎么做吗!

最佳答案

Confluent 目前不为 CLI 提供 docker 镜像(我知道)。在此之前,您可以在本地构建一个简单的镜像来打包 CLI,以便使用该命令进行试验。

创建 Dockerfile :

FROM ubuntu:latest

RUN apt update && apt upgrade
RUN apt install -y curl
RUN curl -L --http1.1 https://cnfl.io/cli | sh -s -- -b /usr/local/bin

然后构建:
docker build -t confluent-cli:latest .

然后在 cp-all-in-one 网络上运行:
$ docker run -it --rm --network="cp-all-in-one_default" confluent-cli:latest bash

然后从容器 shell ,使用命令进行实验:
root@421e53d4a04a:/# confluent
Manage your Confluent Platform.

Usage:
confluent [command]

Available Commands:
cluster Retrieve metadata about Confluent clusters.
completion Print shell completion code.
help Help about any command
iam Manage RBAC, ACL and IAM permissions.
local Manage a local Confluent Platform development environment.
login Log in to Confluent Platform (required for RBAC).
logout Logout of Confluent Platform.
secret Manage secrets for Confluent Platform.
update Update the confluent CLI.
version Print the confluent CLI version.

Flags:
-h, --help help for confluent
-v, --verbose count Increase verbosity (-v for warn, -vv for info, -vvv for debug, -vvvv for trace).
--version version for confluent

Use "confluent [command] --help" for more information about a command.

关于confluent-platform - 如何在 docker 上使用 Confluent CLI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61477696/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com