-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add endpoint copier operator component (#45)
* Add endpoint copier operator package * Add endpoint-copier-operator Github action
- Loading branch information
1 parent
45ea8af
commit 63795a7
Showing
14 changed files
with
483 additions
and
0 deletions.
There are no files selected for viewing
153 changes: 153 additions & 0 deletions
153
.github/workflows/test-endpoint-copier-operator-helm-chart.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
name: Test Endpoint Copier Operator Helm Chart | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '**/assets/endpoint-copier-operator/**' # Adjust the path based on your Helm chart structure | ||
|
||
jobs: | ||
test-endpoint-copier-operator-helm-chart: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v39 | ||
|
||
- name: Verify and copy endpoint-copier-operator assets | ||
run: | | ||
archive=$(echo "${{ steps.changed-files.outputs.all_changed_files }}" | tr -s " " "\012" | grep assets/endpoint-copier-operator/) | ||
# Count the number of files in the array | ||
num_files=$(echo "${archive}" | wc -l) | ||
# Check if there is only one file | ||
if [ "${num_files}" -gt 1 ]; then | ||
echo "Multiple archives modified - please modify only a single chart release per PR:" | ||
for file in "$archive"; do | ||
echo "${file}" | ||
done | ||
exit 1 # Fail the workflow | ||
fi | ||
mkdir helm-charts | ||
tar xvzf "${archive}" -C helm-charts/ | ||
- name: Install K3s | ||
run: | | ||
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="server --cluster-init --write-kubeconfig-mode=644" K3S_TOKEN=foobar sh - | ||
- name: Install Helm | ||
run: | | ||
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod +x get_helm.sh | ||
./get_helm.sh | ||
- name: Deploy endpoint-copier-operator Helm chart | ||
run: | | ||
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml | ||
helm install endpoint-copier-operator helm-charts/endpoint-copier-operator | ||
- name: Wait for all endpoint-copier-operator pods to become ready | ||
run: | | ||
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml | ||
# Set a timeout of 5 minutes | ||
timeout=$((SECONDS + 300)) | ||
while [ $SECONDS -lt $timeout ]; do | ||
# Run the kubectl command to get pod information | ||
kubectl_output=$(kubectl -n default get po | tail -n +2) | ||
# Flag to track whether all pods are ready | ||
all_pods_ready=true | ||
# Iterate over each line in the kubectl output | ||
while IFS= read -r line; do | ||
# Extract the pod name and the readiness status | ||
pod_name=$(echo "$line" | awk '{print $1}') | ||
readiness_status=$(echo "$line" | awk '{print $2}') | ||
# Extract the desired and running replicas from the readiness status | ||
desired_replicas=$(echo "$readiness_status" | awk -F'/' '{print $1}') | ||
running_replicas=$(echo "$readiness_status" | awk -F'/' '{print $2}') | ||
# Check if the digit before / is the same as the one after / | ||
if [ "$desired_replicas" -eq "$running_replicas" ]; then | ||
echo "$pod_name is ready" | ||
else | ||
echo "$pod_name is not ready" | ||
all_pods_ready=false | ||
fi | ||
done <<< "$kubectl_output" | ||
# Check if all pods are ready | ||
if [ "$all_pods_ready" = true ]; then | ||
echo "All pods are ready" | ||
exit 0 | ||
fi | ||
# Wait for a moment before checking again | ||
sleep 5 | ||
done | ||
# If the loop completes, it means the timeout occurred | ||
echo "Timeout: Not all pods are ready in 5 minutes." | ||
exit 1 | ||
- name: Define Kubernetes VIP service | ||
run: | | ||
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml | ||
cat <<-EOF | kubectl apply -f - | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: kubernetes-vip | ||
namespace: default | ||
labels: | ||
servicetype: kubernetes-vip | ||
spec: | ||
ports: | ||
- name: port1 | ||
port: 9345 | ||
protocol: TCP | ||
targetPort: 9345 | ||
- name: port2 | ||
port: 6443 | ||
protocol: TCP | ||
targetPort: 6443 | ||
sessionAffinity: None | ||
type: LoadBalancer | ||
EOF | ||
- name: Verify endpoints | ||
run: | | ||
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml | ||
# Sleep for 5 seconds in order to give enough time to the operator | ||
sleep 5 | ||
kubernetes_ip=$(kubectl get endpoints kubernetes -o jsonpath='{.subsets[0].addresses[0].ip}') | ||
kubernetes_vip_ip=$(kubectl get endpoints kubernetes-vip -o jsonpath='{.subsets[0].addresses[0].ip}') | ||
expected_ports="9345 6443" | ||
kubernetes_vip_ports=$(kubectl get endpoints kubernetes-vip -o yaml -o jsonpath='{.subsets[0].ports[*].port}') | ||
if [ "$kubernetes_ip" != "$kubernetes_vip_ip" ]; then | ||
echo "Error: The IP addresses do not match. kubernetes: $kubernetes_ip, kubernetes-vip: $kubernetes_vip_ip" | ||
exit 1 | ||
elif [ "$expected_ports" != "$kubernetes_vip_ports" ]; then | ||
echo "Error: The ports do not match. expected_ports: $expected_ports, kubernetes_vip_ports: $kubernetes_vip_ports" | ||
exit 1 | ||
fi | ||
- name: Uninstall Helm chart | ||
run: | | ||
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml | ||
helm uninstall endpoint-copier-operator | ||
- name: Uninstall K3s | ||
run: | | ||
/usr/local/bin/k3s-uninstall.sh |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
apiVersion: v2 | ||
appVersion: v0.2.0 | ||
description: A Helm chart for Kubernetes | ||
name: endpoint-copier-operator | ||
type: application | ||
version: 0.2.0 |
62 changes: 62 additions & 0 deletions
62
charts/endpoint-copier-operator/0.2.0/templates/_helpers.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{{/* | ||
Expand the name of the chart. | ||
*/}} | ||
{{- define "endpoint-copier-operator.name" -}} | ||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} | ||
{{- end }} | ||
|
||
{{/* | ||
Create a default fully qualified app name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
If release name contains chart name it will be used as a full name. | ||
*/}} | ||
{{- define "endpoint-copier-operator.fullname" -}} | ||
{{- if .Values.fullnameOverride }} | ||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} | ||
{{- else }} | ||
{{- $name := default .Chart.Name .Values.nameOverride }} | ||
{{- if contains $name .Release.Name }} | ||
{{- .Release.Name | trunc 63 | trimSuffix "-" }} | ||
{{- else }} | ||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{/* | ||
Create chart name and version as used by the chart label. | ||
*/}} | ||
{{- define "endpoint-copier-operator.chart" -}} | ||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} | ||
{{- end }} | ||
|
||
{{/* | ||
Common labels | ||
*/}} | ||
{{- define "endpoint-copier-operator.labels" -}} | ||
helm.sh/chart: {{ include "endpoint-copier-operator.chart" . }} | ||
{{ include "endpoint-copier-operator.selectorLabels" . }} | ||
{{- if .Chart.AppVersion }} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
{{- end }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
{{- end }} | ||
|
||
{{/* | ||
Selector labels | ||
*/}} | ||
{{- define "endpoint-copier-operator.selectorLabels" -}} | ||
app.kubernetes.io/name: {{ include "endpoint-copier-operator.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
{{- end }} | ||
|
||
{{/* | ||
Create the name of the service account to use | ||
*/}} | ||
{{- define "endpoint-copier-operator.serviceAccountName" -}} | ||
{{- if .Values.serviceAccount.create }} | ||
{{- default (include "endpoint-copier-operator.fullname" .) .Values.serviceAccount.name }} | ||
{{- else }} | ||
{{- default "default" .Values.serviceAccount.name }} | ||
{{- end }} | ||
{{- end }} |
49 changes: 49 additions & 0 deletions
49
charts/endpoint-copier-operator/0.2.0/templates/deployment.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: {{ include "endpoint-copier-operator.fullname" . }} | ||
labels: | ||
{{- include "endpoint-copier-operator.labels" . | nindent 4 }} | ||
spec: | ||
selector: | ||
matchLabels: | ||
{{- include "endpoint-copier-operator.selectorLabels" . | nindent 6 }} | ||
{{- if not .Values.autoscaling.enabled }} | ||
replicas: {{ .Values.replicaCount }} | ||
{{- end }} | ||
template: | ||
metadata: | ||
{{- with .Values.podAnnotations }} | ||
annotations: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
labels: | ||
{{- include "endpoint-copier-operator.selectorLabels" . | nindent 8 }} | ||
spec: | ||
securityContext: | ||
{{- toYaml .Values.podSecurityContext | nindent 8 }} | ||
containers: | ||
- command: | ||
- /manager | ||
args: | ||
- --leader-elect | ||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" | ||
name: manager | ||
securityContext: | ||
{{- toYaml .Values.securityContext | nindent 10 }} | ||
livenessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: 8081 | ||
initialDelaySeconds: 15 | ||
periodSeconds: 20 | ||
readinessProbe: | ||
httpGet: | ||
path: /readyz | ||
port: 8081 | ||
initialDelaySeconds: 5 | ||
periodSeconds: 10 | ||
resources: | ||
{{- toYaml .Values.resources | nindent 10 }} | ||
serviceAccountName: {{ include "endpoint-copier-operator.serviceAccountName" . }} | ||
terminationGracePeriodSeconds: 10 |
39 changes: 39 additions & 0 deletions
39
charts/endpoint-copier-operator/0.2.0/templates/rbac/leader_election_role.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# permissions to do leader election. | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
labels: | ||
{{- include "endpoint-copier-operator.labels" . | nindent 4 }} | ||
name: {{ include "endpoint-copier-operator.fullname" . }}-leader-election | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete | ||
- apiGroups: | ||
- coordination.k8s.io | ||
resources: | ||
- leases | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- events | ||
verbs: | ||
- create | ||
- patch |
14 changes: 14 additions & 0 deletions
14
charts/endpoint-copier-operator/0.2.0/templates/rbac/leader_election_role_binding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
labels: | ||
{{- include "endpoint-copier-operator.labels" . | nindent 4 }} | ||
name: {{ include "endpoint-copier-operator.fullname" . }}-leader-election | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: {{ include "endpoint-copier-operator.fullname" . }}-leader-election | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ include "endpoint-copier-operator.fullname" . }} | ||
namespace: {{ .Release.Namespace }} |
42 changes: 42 additions & 0 deletions
42
charts/endpoint-copier-operator/0.2.0/templates/rbac/role.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
labels: | ||
{{- include "endpoint-copier-operator.labels" . | nindent 4 }} | ||
name: {{ include "endpoint-copier-operator.fullname" . }} | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- endpoints | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- endpoints/finalizers | ||
verbs: | ||
- update | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- endpoints/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- services | ||
verbs: | ||
- get | ||
- list | ||
- watch |
Oops, something went wrong.