28 个版本 (6 个稳定版)
5.8.5 | 2023年7月16日 |
---|---|
5.8.3 | 2023年6月11日 |
5.8.0 | 2023年3月29日 |
0.2.19 | 2023年3月7日 |
0.2.10 | 2022年7月20日 |
#91 在 开发工具
每月109 次下载
24KB
351 行
scnocntl
scnocntl
帮助将云原生应用程序转换为云保密应用程序。它支持将本地服务转换为保密服务,以及服务网格转换为保密服务网格。
scnocntl
是在您的开发机上运行的程序,并在容器中执行 scone
命令:scone
是一个将本地应用程序转换为保密应用程序的平台。
我们将其实现为一个 Rust crate。或者,您可以为您的 shell 定义一个 alias
(见下文)。
与 sconify-image
的关系
scnocntl
补充了 sconify_image
。实际上,scnocntl
包含了一个 sconify_image
的包装器:我们可以通过一个或多个 yaml 文件来声明 sconify_image
的参数。
构建保密应用程序
-
sconify_image
帮助构建使用单个容器镜像部署的保密服务。 -
scnocntl
专注于为连接在服务网格中的云原生服务生成镜像。生成是通过 服务文件(见下文)声明的。 -
scnocntl
可以通过 网格文件(见下文)连接应用程序内的服务
示例
要构建服务 OCI 容器镜像,您可以在您的开发机上执行
sconectl apply -f service.yml
其中 service.yml
描述了保密服务。
要使用以下方式构建和上传应用程序的安全策略
sconectl apply -f mesh.yml
设置 scnocntl
首先,确保您已在系统上安装了 Rust
。如果执行
rustc --version
失败,您需要安装 Rust
。您可以使用 rustup
来完成安装。
要安装 sconectl
,只需输入。
cargo install sconectl
sconectl
需要访问容器镜像。目前,您需要在我们 gitlab 上注册一个账户。
Podman 支持
我们的重点是支持 podman
而不是 docker
(旧版)。为确保我们可以在 docker
和 podman
上同时运行,我们目前使用 Docker API。启动 podman
后,请根据 podman
的说明设置环境变量 DOCKER_HOST
。
sconectl
将使用 DOCKER_HOST
作为套接字。如果没有设置,它将暂时使用默认的 Docker 套接字,即 /var/run/docker.sock
。
发布新版本
要发布新的 sconectl
版本,请确保所有更改都已提交并推送。然后执行
cargo publish
CLI 参考
sconectl [COMMAND] [OPTIONS]
sconectl helps to transform cloud-native applications into cloud-confidential applications. It supports converting native services into confidential services and services meshes into confidential service meshes.
sconectl is a CLI that runs on your development machine and executes scone commands in a local container: [scone](https://sconedocs.github.io/) is a platform to convert native applications into confidential applications. sconectl uses docker or podman to run the commands.
Ensure all files you want to pass along are in the current working directory or subdirectories. This is needed since we pass the current working directory to the docker image that executes the command.
If you want to use podman instead, please set the environment variable DOCKER_HOST to your podman API (printed by podman during startup). Currently, podman still has some open issues that need to be solved.
sconectl runs on macOS and Linux, and if there is some demand, on Windows. Try out
https://github.com/scontain/scone_mesh_tutorial
to test your sconectl setup. In particular, it will test that all prerequisites are satisfied
and gives some examples on how to use sconectl.
COMMAND:
apply apply manifest. Execute sconectl apply --help for more info.
OPTIONS:
--cas-config
CAS config JSON directory. Only absolute paths are supported. If the
directory does not exist, a CAS config JSON will be created if
scone cas attest command is used.
--help
Print help information. Other OPTIONS depend on the type of MANIFEST.
You need to specify -m <MANIFEST> to print more specific help messages.
--quiet
By default, sconectl shows a spinner. You can disable the spinner by setting
option --quiet.
ENVIRONMENT:
SCONECTL_REPO
Set this to the OCI image repo that you are using. The default repo
is registry.scontain.com/sconectl
SCONECTL_NOPULL
By default, sconectl pulls the CLI image sconecli:$VERSION first. If this environment
variable is defined, sconectl does not pull the image.
SCONECTL_CAS_CONFIG
CAS config JSON directory. Only absolute paths are supported. If the
directory does not exist, a CAS config JSON will be created if
scone cas attest command is used. If --cas-config option is set, the value
from the command line argument will be used instead of SCONECTL_CAS_CONFIG.
KUBECONFIG
By default we use path $HOME/.kube/config for the Kubernetes config.
If the $KUBECONFIG environment variable is set, then this file is used instead.
**NOTE**: We assume that the certificates are embedded in the config file.
You might therefore need to start minikube as follows:
minikube start --embed-certs
**NOTE**: We only support a single file in KUBECONFIG, i.e., no lists of config
files are supported yet.
DOCKER_HOST
By default we use socket /var/run/docker.sock to talk to the Docker engine.
One can overwrite this default with the help of this environment variable. For
example, you might want to overwrite this in case you are using podman.
SUPPORT: If you need help, send an email to info@scontain.com with a description of the
issue. Ideally, with a log that shows the problem.
VERSION: sconectl 0.2.17
依赖项
~3–13MB
~167K SLoC