springboot2.X使用k8s的configmap

需求

处于项目需要使用kubernetes 的configmap作为配置中心。

环境

kubernetes : 1.14.7
springboot: 2.2.1.RELEASE
spring-cloud-starter-kubernetes-config : 1.1.2.RELEASE
spring-cloud-dependencies :Hoxton.RELEASE

configmap的创建方式

1.根据文件创建

kubectl create  app-config  --from-file=file.yml

这里的 app-config 是configmap 的名称可根据不同项目不同环境来自定义如: test-app-main-config 或者 test-redis-config 等等。
创建完成后 使用如下命令查看k8s中的configmap 我这里查看的默认 namespace 下的cm 。

kubectl get cm 
查看k8s中的configmap

使用下列命令查看 configmap中的 内容

kubectl describe cm dev-redis-config
截屏2020-04-28 下午4.53.30.png

2 根据文件夹创建

kubectl create  app-config  --from-file=/home/ptest/

会把指定文件夹下的 文件都存入configmap中,这里不展开赘述

3 命令直接指定

kubectl create cm app-config --from-literal=port=3306 --from-literal=mysql.url=127.0.0.1

这里的 --from-literal 可以指定多个 key-value 键值对

创建的配置到此创建完毕。接下来说重点

springboot 项目配置

1.首先配置 pom.xml 文件

 <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-kubernetes-config</artifactId>
      <version>1.1.2.RELEASE</version>
    </dependency>

配置完成后 reimport 一下

2.创建bootstrap.yml

在springboot项目 --> resources 文件下创建 bootstrap.yml 文件 如果有其他配置文件建议都移动到 自己新建一个文件下面
文件内容如下

#配置 自动拉去更变的 configmap 内容
management:
  endpoint:
    restart:
      enabled: true
    health:
      enabled: true
    info:
      enabled: true
spring:
  main:
    allow-bean-definition-overriding: true
  cloud:
    kubernetes:
      reload:
        #自动更新配置的开关设置为打开
        enabled: ${configmap.enable}
        #更新配置信息的模式:polling是主动拉取,event是事件通知
        mode: polling
        #主动拉取的间隔时间是1000毫秒
        period: 1000
      config:
        # 是否启用kubernetes configmap 配置
        enabled: true 
        sources:
           # 可以配置多个 
           #这里的配置主要是设置程序的端口基础信息和常规的 application.yml 或者 application.properties文件内容一致
          - name: dev-app-config
            namespace: default
           # 这里的 dev-redis-config就是 configmap中定义的 key
          - name: dev-redis-config
            namespace: default

3.创建RedisConfigProperties.java 配置文件

这里的@ConfigurationProperties(prefix = "common.redis")需要注意 common.redis 这个东西是配置文件中读取的前缀。需要更具自己的项目所用的配置来定义
如propertes 文件

common.redis.clusterType =standalone
common.redis.poolType=lettuce
common.redis.timeout=30000
common.redis.entryTtl =12

创建RedisConfigProperties.java

package com.capgemini.foundation.cicddemo.config;

import lombok.Data;
import lombok.ToString;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

@Data
@ToString
@Configuration
@ConfigurationProperties(prefix = "common.redis")
public class RedisConfigProperties {

    /** cluster type (standalone, sentinel, cluster) */
    private String clusterType;

    /** pool type (jedis, lettuce) */
    private String poolType;

    /** 连接超时(毫秒) */
    private Long timeout;

    /** redis数据过期时间间隔 (单位: 小时) */
    private Long entryTtl;
 

自行写个controller 来测试,当然我这边也提供一个 方便大家复制粘贴

@RestController
public class HelloController {
    @Autowired
    private RedisConfigProperties redisConfigProperties;

    @RequestMapping("/hello")
    public String index() {
        return redisConfigProperties.getTimeout()+" hello world";
    }
}

至此springboot 中获取 configmap主要配置结束。本地如果有k8s环境则可以直接启动访 上面controller的连接来验证是否加载了配置。
注意 如果使用 @Vaule 注解来获取配置 时不会在configmap有变化的时候 获取到变化的值

部署后出现的configmap访问不到的问题

这个配置到算简单。重点是在你的springboot项目部署到 pod中时 会提示无法访问 configmap 。是因为在k8s集群环境中 创建的pod 默认使用的是RBAC模式授权 ,使用的是default的权限,然而default权限无法在pod内访问到 APIservice 开放的 restful 接口。

解决方法

思路:创建RBAC 模式的 角色 和权限
创建 config-reader-role.yml 文件 。
文件内容如下:

apiVersion: v1
kind: ServiceAccount
metadata:
  name: config-reader
  namespace: default

---

apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
  namespace: default
  name: pod-reader
rules:
  - apiGroups: [""]
    resources: ["pods","configmaps"]
    verbs: ["get", "watch", "list"]


---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
  name: pod-reader
  namespace: default
roleRef:
  apiGroup: rbac.authorization.k8s.io
  kind: Role
  name: pod-reader
subjects:
  - kind: ServiceAccount
    name: config-reader
    namespace: default

创建文件完成后直接执行如下命令:

kubectl apply -f config-reader-role.yml

创建完成后需要在我们创建部署的deployment.yml 文件中指定 使用 config-reader 的权限 。在下面节点
spec--> template--> spec 添加serviceAccountName: config-reader
下面贴出 deployment.yml 文件内容:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: demo-item-deployment
  labels:
    app: demo-item
spec:
  # 副本数量
  replicas: 2
  selector:
    matchLabels:
      app: demo-item
  template:
    metadata:
      labels:
        app: demo-item
    spec:
      serviceAccountName: config-reader
      imagePullSecrets:
        - name: docker-repo-key
      containers:
        - name: demo-item
          image: demo:v1
          command: ["java"]
          args: [ "-Dfile.encoding=UTF-8", "-jar", "app.jar","--spring.profiles.active=test"]
          imagePullPolicy: IfNotPresent
          ports:
            - containerPort: 8080
          livenessProbe:
            httpGet:
              port: 8080
              path: /hello
            initialDelaySeconds: 30
            timeoutSeconds: 1
            periodSeconds: 5
          readinessProbe:
            httpGet:
              port: 8080
              path: /hello
            initialDelaySeconds: 30
            timeoutSeconds: 1
            periodSeconds: 5
          volumeMounts:
            - mountPath: /usr/local/javaapp/log
              name: log-data
      volumes:
        - name: log-data
          hostPath:
            path: /var/log/app

如此依赖 启动的 pod 内 springboot项目就能获取到configmap 的配置文件了。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,324评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,356评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,328评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,147评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,160评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,115评论 1 296
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,025评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,867评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,307评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,528评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,688评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,409评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,001评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,657评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,811评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,685评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,573评论 2 353

推荐阅读更多精彩内容