|
本文档采用自动化机器翻译技术翻译。 尽管我们力求提供准确的译文,但不对翻译内容的完整性、准确性或可靠性作出任何保证。 若出现任何内容不一致情况,请以原始 英文 版本为准,且原始英文版本为权威文本。 |
在隔离模式下安装 SUSE® Observability
本文件提供了在隔离环境中使用 Helm 图表安装 SUSE® Observability 的逐步指南。该过程包括在具有互联网访问的主机上准备必要的 Docker 镜像和 Helm 图表,将它们转移到私有网络中的主机,复制 Docker 镜像到私有注册表,然后部署 Helm 图表。
准备 Docker 镜像和 Helm 图表
在本地主机上运行以下命令以获取所需的 Docker 镜像和 Helm 图表:
将 Helm 仓库添加到本地 Helm 缓存:
# Adding the Helm repository for {stackstate-product-name}
helm repo add suse-observability https://charts.rancher.com/server-charts/prime/suse-observability
helm repo update
获取图表的最新版本。这些命令将下载图表的 TGZ 压缩包:
# Downloading the chart for {stackstate-product-name}
# The file will be named suse-observability-k8s-A.B.C.tgz
helm fetch suse-observability/suse-observability
# Downloading the helper chart that generates values for {stackstate-product-name}
# The file will be named suse-observability-values-L.M.N.tgz
helm fetch suse-observability/suse-observability-values
下载 Bash 脚本以保存 Docker 镜像:
# o11y-get-images.sh
curl -LO https://raw.githubusercontent.com/StackVista/helm-charts/master/stable/suse-observability/installation/o11y-get-images.sh
# o11y-save-images.sh
curl -LO https://raw.githubusercontent.com/StackVista/helm-charts/master/stable/suse-observability/installation/o11y-save-images.sh
# Make the scripts executable
chmod a+x o11y-get-images.sh o11y-save-images.sh
提取并保存 Docker 镜像:
# Extract the list of images from the Helm chart and save it to a file.
./o11y-get-images.sh -f suse-observability-A.B.C.tgz > o11y-images.txt
|
将 |
# Save Docker images to an archive.
# The script expects the file o11y-images.txt to contain the list of images used by {stackstate-product-name}.
# The Docker images will be saved to o11y-images.tar.gz.
./o11y-save-images.sh -i o11y-images.txt -f o11y-images.tar.gz
将所需文件复制到远程主机
将以下文件从本地主机复制到私有网络中的主机:
-
o11y-images.txt(SUSE® Observability 图表所需的镜像列表)
-
o11y-images.tar.gz(包含 SUSE® Observability 的 Docker 镜像的压缩包)
-
o11y-load-images.sh(将 Docker 镜像上传到注册表的 Bash 脚本)
-
之前下载的 Helm 图表:
-
suse-observability-A.B.C.tgz
-
suse-observability-values-L.M.N.tgz
-
从压缩包恢复 Docker 镜像到私有注册表
将镜像上传到私有注册表:
# Load Docker images from the archive and push them to the private registry.
# Replace <private-registry> with your private registry's URL.
export DST_REGISTRY_USERNAME="..."
export DST_REGISTRY_PASSWORD="..."
./o11y-load-images.sh -d registry.example.com:5043 -i o11y-images.txt -f o11y-images.tar.gz
|
如果目标注册表不使用身份验证,则环境变量 |
安装 SUSE® Observability
在隔离环境中安装 SUSE® Observability Helm 图表需要覆盖 Docker 镜像 URL 中使用的注册表。本指南遵循 安装 设置,但使用预先下载的 Helm 压缩包和私有 Docker 注册表。
-
推荐的方法
-
遗留方法(已弃用)
|
从版本 |
创建一个 values.yaml 文件,包含您的配置,包括私有注册表:
global:
# Required: Your private registry URL
imageRegistry: "registry.example.com:5043"
suseObservability:
# Required: Your {stackstate-product-name} license key
license: "YOUR-LICENSE-KEY"
# Required: Base URL for {stackstate-product-name}
baseUrl: "https://observability.example.com"
# Required: Sizing profile
sizing:
profile: "150-ha"
# Required: Plain text Admin password
adminPassword: "your-password"
# Instead of adminPassword you can provide a bcrypt hashed password with adminPasswordBcrypt
# Generate with: htpasswd -bnBC 10 "" "your-password" | tr -d ':\n'
# adminPasswordBcrypt: "$2a$10$..."
# Optional: Pull secret for private registry authentication
pullSecret:
username: "registry-user"
password: "registry-pass"
使用下载的图表归档进行部署:
helm upgrade --install \
--namespace suse-observability \
--create-namespace \
--values values.yaml \
suse-observability \
suse-observability-A.B.C.tgz
|
使用推荐的方法,您只需下载 |
|
此方法已弃用。对于新安装,请使用上述推荐的方法。对于使用此方法的现有安装,请参见 迁移指南 以过渡到新的配置格式。 |
创建一个 private-registry.yaml 文件,内容如下:
global:
imageRegistry: registry.example.com:5043
生成 Helm 图表值文件的命令:
export VALUES_DIR=.
helm template \
--set license='<licenseKey>' \
--set baseUrl='<baseURL>' \
--set rancherUrl='<rancherURL>' \
--set sizing.profile='<sizing.profile>' \
suse-observability-values suse-observability-values-L.M.N.tgz \
--output-dir $VALUES_DIR
如果私有注册表需要身份验证,请包含拉取密钥的用户名和密码:
export VALUES_DIR=.
helm template \
--set license='<licenseKey>' \
--set baseUrl='<baseURL>' \
--set rancherUrl='<rancherURL>' \
--set sizing.profile='<sizing.profile>' \
--set pullSecret.username='registry-user' \
--set pullSecret.password='registry-pass' \
suse-observability-values suse-observability-values-L.M.N.tgz \
--output-dir $VALUES_DIR
部署 SUSE® Observability Helm 图表:
helm upgrade --install \
--namespace suse-observability \
--create-namespace \
--values $VALUES_DIR/suse-observability-values/templates/baseConfig_values.yaml \
--values $VALUES_DIR/suse-observability-values/templates/sizing_values.yaml \
--values $VALUES_DIR/suse-observability-values/templates/affinity_values.yaml \
--values private-registry.yaml \
suse-observability \
suse-observability-A.B.C.tgz
验证部署:
kubectl get pod -n suse-observability