gpt4 book ai didi

json - 在 github 操作中保留 k8s 的 secret

转载 作者:行者123 更新时间:2023-12-04 13:28:06 25 4
gpt4 key购买 nike

我们正在尝试使用 github actions ,我们希望保留敏感数据,例如 kubeconfig github内secrets我创建了一个名为 KUBECONFIG1 的 GitHub 密码
重现步骤
在 GitHub secret 中,我应该存储以下文件也尝试使用此 https://onlineyamltools.com/convert-yaml-to-json 转换为 JSON

apiVersion: v1
kind: Config
clusters:
- name: brf
cluster:
certificate-authority-data: >-
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURTakNBd0t6RXBNQ2NHQTFVRUF4TWdkbWx5ZE2bUljTlRtakFWCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0=
server: 'https://vfg.canary.k8s.ondemand.com'
users:
- name: user1
user:
token: >-
eyJhbGciOiJSUzI1NiIsImtpZCI6IiJ9.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuW1lc3BhY2UiOiJnYXJkZW4tZGV2e
contexts:
- name: g-root
context:
cluster: garv
user: robot
namespace: gking
current-context: gaot

在 github 操作工作流中,我们将上面的文件内容保留为名称 KUBECONFIG1并从中创建 k8s secret 。
name: Example action

on: [push]

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- name: install k8s
run: |
curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE=777 sh -
cat /etc/rancher/k3s/k3s.yaml
mkdir -p ~/.kube
cp /etc/rancher/k3s/k3s.yaml ~/.kube/config


- run: 'echo -e "$KUBECONFIG1" > ~/.tmpfile.json'
shell: bash
env:
KUBECONFIG1: ${{secrets.KUBECONFIG1}}

- name: example
shell: bash
run: |
cd ~/
kubectl create secret generic project-kubecfg --from-file=~/.tmpfile.json -n default
运行此工作流程后,我收到以下错误:
error: error loading config file "/home/runner/work/_temp/kubeconfig_1617030542039": couldn't get version/kind; json parse error: json: cannot unmarshal string into Go value of type struct *** APIVersion string "json:\"apiVersion,omitempty\""; Kind string "json:\"kind,omitempty\"" ***
Error: Process completed with exit code 1.
我也尝试获取文件内容并使用
https://onlinelinuxtools.com/escape-shell-characters
当我们使用 Golang 时,也许我应该使用 kubeconfig 并将其用作 go 模板并保存 sensitive-data喜欢 token certificate-authority-data等作为 github secret ,并在工作流程中将 secret 值更新到模板,但不确定如何...
最后我需要什么我需要以下命令在工作流程中起作用 kubectl create secret generic project-kubecfg --from-file=~/.tmpfile.json -n default

最佳答案

问题在于以下命令

kubectl create secret generic project-kubecfg --from-file=~/.tmpfile.json -n default
问题是 ~转至 kubectl这不会将其扩展到主目录。因此,如果您像下面那样更改它,它将起作用
kubectl create secret generic project-kubecfg --from-file=/home/runner/.tmpfile.json -n default
或者更确切地说,使用固定路径而不是主目录 ~

关于json - 在 github 操作中保留 k8s 的 secret ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66856876/

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