K8S 怎么通过kubectl patch对资源进行修改

#创作灵感#

最近工作中遇到了一个task,是关于通过修改servicebinding的yaml文件的annotations来实现对secret的自动rotate.

同样的方式也可以对pod deployment service等资源进行动态更改

修改前的yaml文件如下:

apiVersion: v1
kind: ServiceBinding
metadata:
  annotations:
    argocd.argoproj.io/sync-wave: "2"
    ...
spec:
  credentialsRotationPolicy:
    enabled: false
    rotatedBindingTTL: 72h
    rotationFrequency: 1500h
  externalName: xxx
  secretName: xxx
  ...

针对这个resource, 我们需要在annotations中添加一段"services.cloud.sap.com/forceRotate": "true" 并且将credentialsRotationPolicyenabled设置为true
具体的操作如下:

json_patch='{"metadata":{"annotations":{"services.cloud.sap.com/forceRotate": "true"}},"spec":{"credentialsRotationPolicy":{"enabled":true,"rotationFrequency":"'$rotationFrequency'"}}}'

kubectl patch servicebinding $service_binding_name -n $ns --type merge  --patch "$json_patch"

修改后输出yaml变成了

apiVersion: v1
kind: ServiceBinding
metadata:
  annotations:
    argocd.argoproj.io/sync-wave: "2"
    ...
spec:
  credentialsRotationPolicy:
    enabled: true
    rotatedBindingTTL: 72h
    rotationFrequency: 1500h
  externalName: xxx
  secretName: xxx
  ...

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

葡萄皮Apple

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值