引用资源做多集群分发

引用资源做多集群分发 - 图1提示

开始这部分之前需要你先了解使用如何进行多集群应用的部署。你可以参考 多集群应用交付 章节了解相关基础细节.

你可以使用 KubeVela 引用已有的 Kubernetes 对象并将它们分发到其他位置来完成以下场景:

  • 将管控集群中的密钥复制到子集群中。
  • 将验证集群中的工作负载部署到生产集群中。
  • 使用 Kubernetes 原生的 apiserver 作为控制面,将所有的 Kubernetes 对象存储在外部数据库中。然后通过引用这些资源,将它们下发到真正运行负载的子集群中。

在组件中引用已有的 Kubernetes 对象

为了在组件中使用已有的 Kubernetes 对象,你需要使用 ref-objects 类型的组件,并在参数中声明你想要引用的资源。例如,在下面的例子中,命名空间 examples 中的密钥 image-credential-to-copy 会被作为组件的源数据,然后你可以使用 Topology 策略来将它复制分发到杭州集群中。

  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: ref-objects-example
  5. namespace: examples
  6. spec:
  7. components:
  8. - name: image-pull-secrets
  9. type: ref-objects
  10. properties:
  11. objects:
  12. - resource: secret
  13. name: image-credential-to-copy
  14. policies:
  15. - name: topology-hangzhou-clusters
  16. type: topology
  17. properties:
  18. clusterLabelSelector:
  19. region: hangzhou

通过 URL 地址引用对象

通常我们可以看到社区已经存在的 YAML 地址,你可以通过引用对象类型安装这些 YAML。

  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: example-app
  5. namespace: default
  6. spec:
  7. components:
  8. - name: busybox
  9. type: ref-objects
  10. properties:
  11. urls: ["https://gist.githubusercontent.com/Somefive/b189219a9222eaa70b8908cf4379402b/raw/e603987b3e0989e01e50f69ebb1e8bb436461326/example-busybox-deployment.yaml"]

ref-objects 类型组件的细节

声明需要引用资源最直接的方法是使用 resource: secretresource: deployment 这样的方式来确定引用资源的类型。如果 namelabelSelector 都没有被设置,那么应用将会在它的命名空间下尝试寻找与和组件名称一致的资源。你也可以显式地指定 namenamespace 来确定需要引用的资源。

除了 namenamespace,你还可以使用 cluster 字段让应用组件去引用子集群中的资源。你也可以使用 labelSelector 来筛选资源,而不是直接用 name 去确定目标资源。

在下面的样例中,应用会选择在 hangzhou-1 集群的 examples 命名空间中,所有符合声明标签要求的 Deployment。然后应用会将这些 Deployments 复制到 hangzhou-2 集群中。

  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: ref-objects-duplicate-deployments
  5. namespace: examples
  6. spec:
  7. components:
  8. - name: duplicate-deployment
  9. type: ref-objects
  10. properties:
  11. objects:
  12. - resource: deployment
  13. cluster: hangzhou-1
  14. # select all deployment in the `examples` namespace in cluster `hangzhou-1` that matches the labelSelector
  15. labelSelector:
  16. need-duplicate: "true"
  17. policies:
  18. - name: topology-hangzhou-2
  19. type: topology
  20. properties:
  21. clusters: ["hangzhou-2"]

在一些场景下,你可能想要限制应用能够引用资源的范围,你可以通过在 KubeVela 控制器中设置 --ref-objects-available-scopenamespace 或者 cluster 来限制只在同命名空间或者同一集群内引用资源。

在 ref-objects 类型组件内使用运维特征

ref-objects 类型的组件同样也可以使用运维特征。其主体工作负载会被隐式地设置为引用资源列表中的第一个资源。所有作用在工作负载上的运维特征都会指向该资源。 如下所示的例子展示了如何为引用的 Deployment 设置副本数,并下发到 hangzhou 集群中。

  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: ref-objects-multiple-resources
  5. namespace: examples
  6. spec:
  7. components:
  8. - name: nginx-ref-multiple-resources
  9. type: ref-objects
  10. properties:
  11. objects:
  12. - resource: deployment
  13. - resource: service
  14. traits:
  15. - type: scaler
  16. properties:
  17. replicas: 3
  18. policies:
  19. - name: topology-hangzhou-clusters
  20. type: topology
  21. properties:
  22. clusterLabelSelector:
  23. region: hangzhou

到此你已经完成了交付 Kubernetes 原生资源的学习!

Working with Trait

The ref-objects typed component can also be used together with traits. The implicit main workload is the first referenced object and trait patch will be applied on it. The following example demonstrate how to set the replica number for the referenced deployment while deploying it in hangzhou clusters.

  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: ref-objects-multiple-resources
  5. namespace: examples
  6. spec:
  7. components:
  8. - name: nginx-ref-multiple-resources
  9. type: ref-objects
  10. properties:
  11. objects:
  12. - resource: deployment
  13. - resource: service
  14. traits:
  15. - type: scaler
  16. properties:
  17. replicas: 3
  18. policies:
  19. - name: topology-hangzhou-clusters
  20. type: topology
  21. properties:
  22. clusterLabelSelector:
  23. region: hangzhou

There are several commonly used trait that could be used together with the ref-objects, particularly for Deployment.

Container Image

The container-image trait can be used to change the default image settings declared in the original deployment.

By default, the container-image will replace the original image in the main container (the container uses the name of the component).

  1. traits:
  2. - type: container-image
  3. properties:
  4. image: busybox-1.34.0

You can modify other containers by setting the containerName field.

  1. traits:
  2. - type: container-image
  3. properties:
  4. image: busybox-1.34.0
  5. containerName: sidecar-nginx

You can also modify the ImagePullPolicy as well.

  1. traits:
  2. - type: container-image
  3. properties:
  4. image: busybox-1.34.0
  5. containerName: sidecar-nginx
  6. imagePullPolicy: IfNotPresent

Multiple container patch is also available.

  1. traits:
  2. - type: container-image
  3. properties:
  4. containers:
  5. - containerName: busybox
  6. image: busybox-1.34.0
  7. imagePullPolicy: IfNotPresent
  8. - containerName: sidecar-nginx
  9. image: nginx-1.20

Command

The command trait can be used to modify the original running command in deployment’s pods.

  1. traits:
  2. - type: command
  3. properties:
  4. command: ["sleep", "8640000"]

The above configuration can be used to patch the main container (the container that uses the name of the component). If you would like to modify another container, you could use the field containerName.

  1. traits:
  2. - type: command
  3. properties:
  4. command: ["sleep", "8640000"]
  5. containerName: sidecar-nginx

If you want to replace the existing args in the container, instead of the command, use the args parameter.

  1. traits:
  2. - type: command
  3. properties:
  4. args: ["86400"]

If you want to append/delete args to the existing args, use the addArgs/delArgs parameter. This can be useful if you have lots of args to be managed.

  1. traits:
  2. - type: command
  3. properties:
  4. addArgs: ["86400"]
  1. traits:
  2. - type: command
  3. properties:
  4. delArgs: ["86400"]

You can also configure commands in multiple containers.

  1. traits:
  2. - type: command
  3. properties:
  4. containers:
  5. - containerName: busybox
  6. command: ["sleep", "8640000"]
  7. - containerName: sidecar-nginx
  8. args: ["-q"]

Environment Variable

With the trait env, you can easily manipulate the declared environment variables.

For example, the following usage shows how to set multiple environment variables in the main container (the container uses the component’s name). If any environment variable does not exist, it will be added. If exists, it will be updated.

  1. traits:
  2. - type: env
  3. properties:
  4. env:
  5. key_first: value_first
  6. key_second: value_second

You can remove existing environment variables by setting the unset field.

  1. traits:
  2. - type: env
  3. properties:
  4. unset: ["key_existing_first", "key_existing_second"]

If you would like to clear all the existing environment variables first, and then add new variables, use replace: true.

  1. traits:
  2. - type: env
  3. properties:
  4. env:
  5. key_first: value_first
  6. key_second: value_second
  7. replace: true

If you want to modify the environment variable in other containers, use the containerName field.

  1. traits:
  2. - type: env
  3. properties:
  4. env:
  5. key_first: value_first
  6. key_second: value_second
  7. containerName: sidecar-nginx

You can set environment variables in multiple containers as well.

  1. traits:
  2. - type: env
  3. properties:
  4. containers:
  5. - containerName: busybox
  6. env:
  7. key_for_busybox_first: value_first
  8. key_for_busybox_second: value_second
  9. - containerName: sidecar-nginx
  10. env:
  11. key_for_nginx_first: value_first
  12. key_for_nginx_second: value_second

Labels & Annotations

To add/update/remove labels or annotations for the workload (like Kubernetes Deployment), use the labels or annotations trait.

  1. traits:
  2. # the `labels` trait will add/delete label key/value pair to the
  3. # labels of the workload and the template inside the spec of the workload (if exists)
  4. # 1. if original labels contains the key, value will be overridden
  5. # 2. if original labels do not contain the key, value will be added
  6. # 3. if original labels contains the key and the value is null, the key will be removed
  7. - type: labels
  8. properties:
  9. added-label-key: added-label-value
  10. label-key: modified-label-value
  11. to-delete-label-key: null
  1. traits:
  2. # the `annotations` trait will add/delete annotation key/value pair to the
  3. # labels of the workload and the template inside the spec of the workload (if exists)
  4. # 1. if original annotations contains the key, value will be overridden
  5. # 2. if original annotations do not contain the key, value will be added
  6. # 3. if original annotations contains the key and the value is null, the key will be removed
  7. - type: annotations
  8. properties:
  9. added-annotation-key: added-annotation-value
  10. annotation-key: modified-annotation-value
  11. to-delete-annotation-key: null

JSON Patch & JSON Merge Patch

Except for the above trait, a more powerful but more complex way to modify the original resources is to use the json-patch or json-merge-patch trait. They follow the RFC 6902 and RFC 7386 respectively. Usage examples are shown below.

  1. traits:
  2. # the json patch can be used to add, replace and delete fields
  3. # the following part will
  4. # 1. add `deploy-label-key` to deployment labels
  5. # 2. set deployment replicas to 3
  6. # 3. set `pod-label-key` to `pod-label-modified-value` in pod labels
  7. # 4. delete `to-delete-label-key` in pod labels
  8. # 5. add sidecar container for pod
  9. - type: json-patch
  10. properties:
  11. operations:
  12. - op: add
  13. path: "/spec/replicas"
  14. value: 3
  15. - op: replace
  16. path: "/spec/template/metadata/labels/pod-label-key"
  17. value: pod-label-modified-value
  18. - op: remove
  19. path: "/spec/template/metadata/labels/to-delete-label-key"
  20. - op: add
  21. path: "/spec/template/spec/containers/1"
  22. value:
  23. name: busybox-sidecar
  24. image: busybox:1.34
  25. command: ["sleep", "864000"]
  1. traits:
  2. # the json merge patch can be used to add, replace and delete fields
  3. # the following part will
  4. # 1. add `deploy-label-key` to deployment labels
  5. # 2. set deployment replicas to 3
  6. # 3. set `pod-label-key` to `pod-label-modified-value` in pod labels
  7. # 4. delete `to-delete-label-key` in pod labels
  8. # 5. reset `containers` for pod
  9. - type: json-merge-patch
  10. properties:
  11. metadata:
  12. labels:
  13. deploy-label-key: deploy-label-added-value
  14. spec:
  15. replicas: 3
  16. template:
  17. metadata:
  18. labels:
  19. pod-label-key: pod-label-modified-value
  20. to-delete-label-key: null
  21. spec:
  22. containers:
  23. - name: busybox-new
  24. image: busybox:1.34
  25. command: ["sleep", "864000"]

引用对象的多集群差异化部署

通过 override 策略与负责差异化配置的运维特征相结合,可以完成引用对象的多集群差异化部署。

我们以一个 Kubernetes Deployment YAML 为例:

  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. labels:
  5. app: demo
  6. name: demo
  7. namespace: demo
  8. spec:
  9. replicas: 1
  10. selector:
  11. matchLabels:
  12. app: demo
  13. template:
  14. metadata:
  15. labels:
  16. app: demo
  17. spec:
  18. containers:
  19. - image: oamdev/testapp:v1
  20. name: demo

通过指定 topology 策略来描述部署的集群。

  1. apiVersion: core.oam.dev/v1alpha1
  2. kind: Policy
  3. metadata:
  4. name: cluster-beijing
  5. namespace: demo
  6. type: topology
  7. properties:
  8. clusters: ["<clusterid1>"]
  9. ---
  10. apiVersion: core.oam.dev/v1alpha1
  11. kind: Policy
  12. metadata:
  13. name: cluster-hangzhou
  14. namespace: demo
  15. type: topology
  16. properties:
  17. clusters: ["<clusterid2>"]

然后我们通过 override 策略来差异化配置运维特征,即给不同的环境配置不同的运维特征。通过这些运维特征去修改引用对象的参数。

  1. apiVersion: core.oam.dev/v1alpha1
  2. kind: Policy
  3. metadata:
  4. name: override-replic-beijing
  5. namespace: demo
  6. type: override
  7. properties:
  8. components:
  9. - name: "demo"
  10. traits:
  11. - type: scaler
  12. properties:
  13. replicas: 3
  14. ---
  15. apiVersion: core.oam.dev/v1alpha1
  16. kind: Policy
  17. metadata:
  18. name: override-replic-hangzhou
  19. namespace: demo
  20. type: override
  21. properties:
  22. components:
  23. - name: "demo"
  24. traits:
  25. - type: scaler
  26. properties:
  27. replicas: 5

然后,定义一个使用差异化配置做多集群部署的工作流:

  1. apiVersion: core.oam.dev/v1alpha1
  2. kind: Workflow
  3. metadata:
  4. name: deploy-demo
  5. namespace: demo
  6. steps:
  7. - type: deploy
  8. name: deploy-bejing
  9. properties:
  10. policies: ["override-replic-beijing", "cluster-beijing"]
  11. - type: deploy
  12. name: deploy-hangzhou
  13. properties:
  14. policies: ["override-replic-hangzhou", "cluster-hangzhou"]

最终,我们将这些对象组合起来,并且通过部署一个执行计划(Application) 来触发部署:

  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: demo
  5. namespace: demo
  6. annotations:
  7. app.oam.dev/publishVersion: version1
  8. spec:
  9. components:
  10. - name: demo
  11. type: ref-objects
  12. properties:
  13. objects:
  14. - apiVersion: apps/v1
  15. kind: Deployment
  16. name: demo
  17. workflow:
  18. ref: deploy-demo

通过 KubeVela,你可以引用任意的 Kubernetes 资源,然后做多集群分发和差异化配置。