持续集成部署-k8s-配置与存储-配置管理:配置文件不可变

持续集成部署-k8s-配置与存储-配置管理:配置文件不可变

  • [1. 配置文件不可变场景](#1. 配置文件不可变场景)
  • [2. 配置 ConfigMap 为不可修改](#2. 配置 ConfigMap 为不可修改)

1. 配置文件不可变场景

上一篇我们说到,对于 ConfigMap 的热更新操作,我们在创建了ConfigMap 之后,由于某种原因,我们的配置文件需要变动了,k8s 支持我们热更新配置文件的内容,但是在某些情况下,为了生产环境的稳定性,一些重要的文件,希望上线后就不允许修改了。

此时在配置 ConfigMap 时可以设置 immutable: true 来禁止修改。

2. 配置 ConfigMap 为不可修改

查看当前环境中 configMap :

sh 复制代码
[root@docker-54 config]# kubectl get cm
NAME                            DATA   AGE
kube-root-ca.crt                1      194d
nginx-conf-cm                   1      19d
spring-boot-test-aliases-yaml   1      20d
spring-boot-test-yaml           1      20d
test-dir-config                 2      20d
test-env-config                 2      20d
test-key-value-config           2      20d
[root@docker-54 config]# 

修改 test-dir-config 的配置,设置 immutable: true ,然后直接保存退出

sh 复制代码
[root@docker-54 config]# kubectl edit cm test-dir-config
# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
apiVersion: v1
data:
  db.properties: |
    username: zhangsan
    password: abc123456
  redis.properties: |
    host: 127.0.0.1
    port: 6379
kind: ConfigMap
metadata:
  creationTimestamp: "2023-11-05T02:56:57Z"
  name: test-dir-config
  namespace: default
  resourceVersion: "12701596"
  uid: 9a6c3cd3-a2d9-41c2-91b8-229e8e6d19ca
immutable: true
~                                                                                                                                                                                                                                                                                                                                              
"/tmp/kubectl-edit-214262249.yaml" 20L, 557C written
configmap/test-dir-config edited
[root@docker-54 config]# 

可以看到,当前还是可以修改的。

接着我们再次尝试修改:

sh 复制代码
# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
# configmaps "test-dir-config" was not valid:
# * data: Forbidden: field is immutable when `immutable` is set
#
apiVersion: v1
data:
  db.properties: |
    username: lisi
    password: abc123456
  redis.properties: |
    host: 127.0.0.1
    port: 6379
immutable: true
kind: ConfigMap
metadata:
  creationTimestamp: "2023-11-05T02:56:57Z"
  name: test-dir-config
  namespace: default
  resourceVersion: "13734572"
  uid: 9a6c3cd3-a2d9-41c2-91b8-229e8e6d19ca
~                                                                                                                                                                        
~                                                                                                                                                                                                                                                                                                                                               
"/tmp/kubectl-edit-685283905.yaml" 23L, 665C

可以看到,上面在我修改了 username的值为 lisi 之后,保存,然后提示:configmaps "test-dir-config" was not valid: data: Forbidden: field is immutable when immutable is set

这里告诉我们,由于之前设置过 immutable: true,所以现在不让我们修改了。

相关推荐
新手小袁_J3 分钟前
JDK11下载安装和配置超详细过程
java·spring cloud·jdk·maven·mybatis·jdk11
呆呆小雅4 分钟前
C#关键字volatile
java·redis·c#
Monly214 分钟前
Java(若依):修改Tomcat的版本
java·开发语言·tomcat
Ttang237 分钟前
Tomcat原理(6)——tomcat完整实现
java·tomcat
钱多多_qdd17 分钟前
spring cache源码解析(四)——从@EnableCaching开始来阅读源码
java·spring boot·spring
waicsdn_haha19 分钟前
Java/JDK下载、安装及环境配置超详细教程【Windows10、macOS和Linux图文详解】
java·运维·服务器·开发语言·windows·后端·jdk
Q_192849990630 分钟前
基于Spring Boot的摄影器材租赁回收系统
java·spring boot·后端
Code_流苏32 分钟前
VSCode搭建Java开发环境 2024保姆级安装教程(Java环境搭建+VSCode安装+运行测试+背景图设置)
java·ide·vscode·搭建·java开发环境
禁默1 小时前
深入浅出:AWT的基本组件及其应用
java·开发语言·界面编程
Cachel wood1 小时前
python round四舍五入和decimal库精确四舍五入
java·linux·前端·数据库·vue.js·python·前端框架