3

我有一个 application.yml (Spring) 文件,它有近 70 个字段,想要将这些字段移动到 ConfigMap。在设置 ConfigMap 的过程中,实现了 70 个字段全部扁平化 示例:webservice.endpoint.transferfund 将 70 个字段全部转换为扁平化会是一个痛苦的任务,有什么办法吗?

请建议。

下面的配置正在工作:

apiVersion: v1
kind: ConfigMap
metadata:
  name: configmapname
  namespace: default
data:
  webservice.endpoint.transferfund: http://www.customer-service.app/api/tf
  webservice.endpoint.getbalance: http://www.customer-service.app/api/balance
  webservice.endpoint.customerinfo: http://www.customer-service.app/api/customerinfo

下面的配置不起作用,尝试它为 yml 格式。

apiVersion: v1
kind: ConfigMap
metadata:
  name: configmapname
  namespace: default
data:
  application.yaml: |-
    webservice:
      endpoint:
        transferfund: http://www.customer-service.app/api/tf
        getbalance: http://www.customer-service.app/api/balance
        customerinfo: http://www.customer-service.app/api/customerinfo 

在 src/main/resources/application.yml 中有以下字段来访问 ConfigMap 键:

webservice:
  endpoint:
    transferfund: ${webservice.endpoint.transferfund}
    getbalance: ${webservice.endpoint.getbalance}
    customerinfo: ${webservice.endpoint.customerinfo}

更新:

配置图说明:

C:\Users\deskktop>kubectl describe configmap configmapname
Name:         configmapname
Namespace:    default
Labels:       <none>
Annotations:  <none>

Data
====
application.yaml:
----
webservice:
  endpoint:
    transferfund: http://www.customer-service.app/api/tf
    getbalance: http://www.customer-service.app/api/balance
    customerinfo: http://www.customer-service.app/api/customerinfo
Events:  <none>

部署脚本:(configMapRef 名称提供为 configmap 名称,如上所示)

---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: configmap-sample
spec:
  replicas: 1
  strategy:
    type: RollingUpdate
  template:
    metadata:
      labels:
        app: configmap-sample
    spec:
      containers:
      - name: configmap-sample
        image: <<image>>
        ports:
        - name: http-api
          containerPort: 9000
        envFrom:
        - configMapRef:
            name: configmapname
        resources:
          limits:
            memory: 1Gi
          requests:
            memory: 768Mi
        env:
        - name: JVM_OPTS
          value: "-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -XX:MaxRAMFraction=1 -Xms768M"   
4

3 回答 3

3

ConfigMap是配置设置的字典。它由字符串的键值对组成。然后 Kubernetes 将这些值添加到您的容器中。

在您的情况下,您必须将它们弄平,因为 Kubernetes 不会理解它们。

您可以阅读有关创建 ConfigMap的文档:

kubectl create configmap <map-name> <data-source>

where 是您要分配给 ConfigMap 的名称,是从中提取数据的目录、文件或文字值。

数据源对应 ConfigMap 中的一个键值对,其中

  • key = 您在命令行中提供的文件名或密钥,以及
  • value = 您在命令行中提供的文件内容或文字值。

您可以使用 kubectl describekubectl get 检索有关 ConfigMap 的信息。

编辑

您可以从具有已定义键的文件创建 ConfigMap。

定义从文件创建 ConfigMap 时要使用的键

语法可能如下所示:

kubectl create configmap my_configmap --from-file=<my-key-name>=<path-to-file> ConfigMap 可能如下所示:

apiVersion: v1
kind: ConfigMap
metadata:
  creationTimestamp: 2019-07-03T18:54:22Z
  name: my_configmap
  namespace: default
  resourceVersion: "530"
  selfLink: /api/v1/namespaces/default/configmaps/my_configmap
  uid: 05f8da22-d671-11e5-8cd0-68f728db1985
data:
  <my-key-name>: |
    key=value
    key=value
    key=value
    key=value

我还能够从配置文件中找到 Create Kubernetes ConfigMaps

功能性

投影仪可以:

  • 获取原始文件并将它们填充到 ConfigMap
  • 配置仓库中的 Glob 文件,并将它们全部填充到您的 configmap 中
  • 从结构化数据中提取字段 (yaml/json)
  • 通过提取一些字段并删除其他字段,从 yaml/json 源的子集创建新的结构化输出
  • 在 JSON 和 YAML 之间来回转换(将 YAML 源转换为 JSON 输出等)
  • 支持从源中提取对象+数组等复杂字段,而不仅仅是标量!
于 2019-07-03T13:56:05.690 回答
1

您需要将 ConfigMap 挂载为 Volume。否则内容将存在于环境变量中。我在这里发布的示例来自https://kubernetes.io/docs/tasks/configure-pod-container/configure-pod-configmap/#add-configmap-data-to-a-volume

apiVersion: v1
kind: Pod
metadata:
  name: dapi-test-pod
spec:
  containers:
    - name: test-container
      image: k8s.gcr.io/busybox
      command: [ "/bin/sh", "-c", "ls /etc/config/" ]
      volumeMounts:
      - name: config-volume
        mountPath: /etc/config
  volumes:
    - name: config-volume
      configMap:
        # Provide the name of the ConfigMap containing the files you want
        # to add to the container
        name: special-config
  restartPolicy: Never
于 2019-07-03T09:37:14.807 回答
0

您提到过,您在 Spring 项目的上下文中使用 application.yaml。因此,如果您不关心使用 .yaml 还是 .property 配置文件,您可以只使用属性文件,因为 configMap 生成支持它们。它与--from-env-file标志一起使用:

kubectl create configmap configmapname --from-env-file application.properties

因此,在您的部署文件中,您可以直接访问密钥:

...
env:
  - KEYNAME
    valueFrom:
       configMapKeyRef:
          name: configmapname
          key: KeyInPropertiesFile
于 2020-03-26T15:48:54.873 回答