Skip to content

Commit

Permalink
feat: Add proposal for promote-dependencies-automatically
Browse files Browse the repository at this point in the history
Signed-off-by: zhy76 <958474674@qq.com>
  • Loading branch information
zhy76 committed Oct 6, 2023
1 parent 48b8e9f commit 68b091c
Show file tree
Hide file tree
Showing 5 changed files with 188 additions and 0 deletions.
176 changes: 176 additions & 0 deletions docs/proposals/promote-dependencies-automatically/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
---
title: Promote Dependencies Automatically
authors:
- "@zhy76" # Authors' github accounts here.
reviewers:
- TBD
approvers:
- TBD

creation-date: 2023-10-06

---

# Promote Dependencies Automatically

## Summary

Secrets or ConfigMap can be installed as a data volume or exposed as an environment variable for use by containers in a Pod. At the same time, users can expose applications running on a set of Pods through a Service.

Therefore, we need to provide an automatic promotion mechanism for dependent resources in karmadactl. When you promote a resource, it is necessary to automatically promote all the resources on which that resource depends. For example, promote the Secret that Deployment depends on.

Typically, users don't create Pods directly. Instead, users create them using workload resources such as Deployment, StatefulSet, or Job. Take Deployment as an example. As shown in the following figure, the dependent resources of Deployment include ConfigMaps, Secrets, PVC, and Services.

And, in addition to the native resources in kubernetes, the resources on which the user's CRD/CR resources depend need to support automatic promotion.

![dependencies](statics/dependenciesOfDeployment.drawio.svg)

## Motivation

Currently, `karmadactl promote` only supports promotion of resources one by one. When promoting workload resources through Karmada, users need to manually promote their dependent resources. Maintaining the dependent resources of the target cluster becomes a heavy burden.

### Goals

Provide a strategy to automatically promote the dependent resources of a target workload when promoting the target workload resources to be managed by Karmada.

### Non-Goals

Support enabling and disabling this feature, with the default setting as enabled.

## Proposal

This proposal introduces a strategy to `karmadactl`, whereby when users promote resources, all the resources that the promoted resource depends on will also be automatically promoted to be managed by Karmada.

### Function overview

1. Support automatic promotion of dependent resources for native Kubernetes resources.
2. Support automatic promotion of dependent resources for CR(Custom Resource).

### User Stories (Optional)

#### Story 1

Suppose there is a member cluster where a workload (such as Deployment or custom resource) is deployed, but it is not managed by Karmada. This resource references ConfigMaps and Secrets.

- Action:
- The user use the `karmadactl promote` command to promote this resource and let Karmada take over the management of this workload.
- Result:
- The ConfigMaps and Secrets that the resource depends on will also be promoted to be managed by Karmada.

## Design Details

### Architecture

![architecture](statics/architecture.drawio.svg)
From the above architecture diagram, the workflow for promoting the resource and its dependent resources is as follows:
1. Retrieve the ObjInfo(Object Information) of the workload to be promoted from the member cluster.
2. Determine whether to enable the functionality of automatically promoting all dependent resources based on the value of `Deps`.
1. If `Deps` is set to `false`, only create the corresponding Resource Template, ClusterPropagationPolicy/PropagationPolicy, and generate the respective ResourceBinding in the Karmada control plane for the workload.
2. If `Deps` is set to `true`, use the interpret framework to analyze the dependencies of the corresponding workload. Create the Resource Templates, ClusterPropagationPolicy/PropagationPolicy, and ResourceBindings for the dependencies in the Karmada control plane. Then, create the ResourceBinding for the workload itself.

**Note:**
If the workload to be promoted is a CR(Custom Resource), we need to first promote its CRD (Custom Resource Definition).

### Interpret workload dependencies

To achieve the automatic promotion of dependent resources, the key challenge is to determine how to obtain the dependent resources of the resource to be promoted. Therefore, we need to be able to parse the dependencies of a resource. Currently, the interpret framework in Karmada supports the following methods for parsing dependent resources:

1. Default built-in interpretation
1. Native Kubernetes Resource Interpretation:
1. Perform dependency parsing using the structure of native Kubernetes resources.
2. Third-Party Resource Interpretation:
1. Pre-configure Lua scripts for commonly used CR(Custom Resource) to enable dependency parsing using Lua configurations.
3. Custom Interpretation
1. Lua Configuration-based Interpretation:
1. Configure resource interpretation rules for dependency parsing by specifying Lua scripts in the [ResourceInterpreterCustomization](https://github.com/karmada-io/karmada/blob/84b971a501ba82c53a5ad455c2fe84d842cd7d4e/pkg/apis/config/v1alpha1/resourceinterpretercustomization_types.go#L17) resource.
2. Webhook-based Interpretation:
1. Users can design Resource Interpreter Webhooks for specific custom resources to handle Interpreter Operations requests and perform dependency parsing. The process involves receiving these request operations and processing them accordingly.
The specific process is as follows:

![webhook-interpret](statics/webhook-interpret.png)

***Note:***
Using the webhook-based interpretation method may pose difficulties when making requests to the webhook interpret service. In such cases, we need to perform port forwarding to invoke the service within the cluster.

### Port forward the request to webhook interpret service

Generally, external access to applications (Pods) running in Kubernetes can be achieved through three modes: NodePorts, LoadBalancer, and Ingress. Additionally, the `kubectl` subcommand `port-forward` can be used to forward ports and map local ports to specific Pod ports, allowing access to Pod services within the Kubernetes cluster.

We can utilize the `port-forward` feature of `kubectl` to map a local port to the port of the webhook interpret Pod. This allows us to redirect webhook interpret requests initiated by `karmadactl` to the Pod's port and access the Pod service. The principle of `kubectl port-forward` is illustrated in the following diagram (Kubernetes v1.24.0):

![port-forward](statics/port-forward.drawio.svg)

First, `port-forward` initiates an `spdy` protocol request to the address of the Pod subresource `portforward`: `/api/v1/namespaces/{namespace}/pods/{pod}/portforward`. At this point, kubectl starts listening on a local port and establishes a connection to the API server using the URL of the pod subresource `portforward`.

When a connection is made to the local port, `kubectl` continuously copies data between the client and the API server's port-forward endpoint.

Upon receiving the request for accessing the Pod subresource `portforward`, the API server obtains the URL of the kubelet server on the node where the pod resides, based on the pod and node information. It then proxies the request for accessing the pod's `portforward` to the kubelet server.

After receiving the request, the kubelet server first utilizes the `RuntimeServiceClient` to send a gRPC request to the container runtime interface (`/runtime.v1alpha2.RuntimeService/PortForward`). This is done to obtain the URL of the streaming server in the container runtime responsible for handling the port-forward request. Once the URL for the port-forward streaming is obtained, the kubelet server proxies the request to that URL.

The CRI service starts a streaming server that responds to stream requests for `/exec`, `/attach`, and `/portforward`. On Linux, within the network namespace of the pod, a connection to the target port is established using the `localhost` address. Data is then copied between this connection, facilitating the transfer of data.

For the specific implementation of using port-forward to forward requests from karmadactl to the webhook interpret Pod service, we need to utilize the spdy protocol to forward the request to the URL of the portforward subresource of the corresponding Pod. This enables us to access the webhook interpret service within the cluster.

### Example

Assuming we deploy a workload CR named `myapp` and its referenced ConfigMap called `my-config` in the member cluster member1.

```yaml
apiVersion: apps/v1
kind: Workload
metadata:
name: myapp
labels:
app: myapp
spec:
replicas: 1
selector:
matchLabels:
app: myapp
template:
metadata:
labels:
app: myapp
spec:
containers:
- image: nginx
name: nginx
volumeMounts:
- name: configmap
mountPath: "/configmap"
volumes:
- name: configmap
configMap:
name: my-config
---
apiVersion: v1
kind: ConfigMap
metadata:
name: my-config
data:
nginx.properties: |
proxy-connect-timeout: "10s"
proxy-read-timeout: "10s"
client-max-body-size: "2m"
```
After executing the `karmadactl promote workload myapp -c member1 -d=true` command, we can obtain the Resource Binding and Work object corresponding to the workload `myapp` and ConfigMap `my-config` in the Karmada control plane. This indicates that both `myapp` and its dependent resource `my-config` have been successfully promoted to the Karmada control plane.

When deleting `myapp` from the Karmada control plane, `myapp` in the member cluster member1 will also be deleted.

### Test Plan

#### UT

Testing coverage for new methods.

#### E2E

| Test Case | Case Description |
|-----------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
| Promote dependencies of native resource automatically | Test if dependencies of native resource automatically promote to karmada. |
| Promote dependencies of thirdparty resource automatically | Test if dependencies of thirdparty resource automatically promote to karmada. |
| Promote dependencies of custom resource automatically | Test if dependencies of custom resource automatically promote to karmada(use lua configuration way and webhook interpret way). |


## Alternatives
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 68b091c

Please sign in to comment.