Added nodepool to charts
Depends-On: https://review.opendev.org/700222 Change-Id: I137953006abdbb3abc6d82b010d68df3ed0ef64d
This commit is contained in:
parent
8c5888973c
commit
f7d0d3ac66
7
charts/nodepool/Chart.yaml
Normal file
7
charts/nodepool/Chart.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
name: nodepool
|
||||
description: Nodepool is a system for managing test node resources.
|
||||
home: https://zuul-ci.org/docs/nodepool/
|
||||
appVersion: 3.10.0
|
||||
version: 0.0.1
|
51
charts/nodepool/templates/_helpers.tpl
Normal file
51
charts/nodepool/templates/_helpers.tpl
Normal file
@ -0,0 +1,51 @@
|
||||
{/* vim: set filetype=mustache: */}}
|
||||
{{/*
|
||||
Expand the name of the chart.
|
||||
*/}}
|
||||
{{- define "nodepool.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 "nodepool.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 -}}
|
||||
|
||||
{{/*
|
||||
Generate basic labels
|
||||
*/}}
|
||||
{{- define "nodepool.common.labels" }}
|
||||
app.kubernetes.io/name: {{ include "nodepool.fullname" . }}
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
app.kubernetes.io/part-of: nodepool
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Generate Nodepool-builder labels
|
||||
*/}}
|
||||
{{- define "nodepool.builder.labels" }}
|
||||
{{- include "nodepool.common.labels" . }}
|
||||
app.kubernetes.io/component: nodepool-builder
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Generate Nodepool-launcher labels
|
||||
*/}}
|
||||
{{- define "nodepool.launcher.labels" }}
|
||||
{{- include "nodepool.common.labels" . }}
|
||||
app.kubernetes.io/component: nodepool-launcher
|
||||
{{- end }}
|
||||
|
66
charts/nodepool/templates/builder/statefulset.yaml
Normal file
66
charts/nodepool/templates/builder/statefulset.yaml
Normal file
@ -0,0 +1,66 @@
|
||||
---
|
||||
{{ if .Values.builder.enabled }}
|
||||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
namespace: {{ .Release.Namespace }}
|
||||
name: {{ include "nodepool.fullname" . }}-builder
|
||||
labels:
|
||||
{{- include "nodepool.builder.labels" . | indent 4 }}
|
||||
spec:
|
||||
replicas: {{ .Values.builder.replicas }}
|
||||
serviceName: nodepool-builder
|
||||
selector:
|
||||
matchLabels:
|
||||
{{- include "nodepool.builder.labels" . | indent 6 }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "nodepool.builder.labels" . | indent 8 }}
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }}
|
||||
spec:
|
||||
containers:
|
||||
- name: launcher
|
||||
image: zuul/nodepool-builder:latest
|
||||
env:
|
||||
- name: OS_CLIENT_CONFIG_FILE
|
||||
value: /etc/nodepool/clouds.yaml
|
||||
volumeMounts:
|
||||
- name: nodepool-config
|
||||
mountPath: /etc/nodepool
|
||||
- name: nodepool-logs
|
||||
mountPath: /var/log/nodepool
|
||||
- name: {{ include "nodepool.fullname" . }}-images-dir
|
||||
mountPath: {{ index .Values.config "images-dir" }}
|
||||
- name: dev
|
||||
mountPath: /dev
|
||||
securityContext:
|
||||
privileged: true
|
||||
volumes:
|
||||
- name: nodepool-config
|
||||
secret:
|
||||
secretName: {{ include "nodepool.fullname" . }}
|
||||
- name: nodepool-logs
|
||||
emptyDir: {}
|
||||
- name: dev
|
||||
hostPath:
|
||||
path: /dev
|
||||
{{- with .Values.tolerations }}
|
||||
tolerations:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: {{ include "nodepool.fullname" . }}-images-dir
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 80G
|
||||
{{ end }}
|
43
charts/nodepool/templates/launcher/deployment.yaml
Normal file
43
charts/nodepool/templates/launcher/deployment.yaml
Normal file
@ -0,0 +1,43 @@
|
||||
---
|
||||
{{ if .Values.launcher.enabled }}
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
namespace: {{ .Release.Namespace }}
|
||||
name: {{ include "nodepool.fullname" . }}-launcher
|
||||
labels:
|
||||
{{- include "nodepool.launcher.labels" . | indent 4 }}
|
||||
spec:
|
||||
replicas: {{ .Values.launcher.replicas }}
|
||||
selector:
|
||||
matchLabels:
|
||||
{{- include "nodepool.launcher.labels" . | indent 6 }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "nodepool.launcher.labels" . | indent 8 }}
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }}
|
||||
spec:
|
||||
containers:
|
||||
- name: launcher
|
||||
image: zuul/nodepool-launcher:latest
|
||||
env:
|
||||
- name: OS_CLIENT_CONFIG_FILE
|
||||
value: /etc/nodepool/clouds.yaml
|
||||
volumeMounts:
|
||||
- name: nodepool-config
|
||||
mountPath: /etc/nodepool
|
||||
volumes:
|
||||
- name: nodepool-config
|
||||
secret:
|
||||
secretName: {{ include "nodepool.fullname" . }}
|
||||
{{- with .Values.tolerations }}
|
||||
tolerations:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
{{ end }}
|
14
charts/nodepool/templates/secret.yaml
Normal file
14
charts/nodepool/templates/secret.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
namespace: {{ .Release.Namespace }}
|
||||
name: {{ include "nodepool.fullname" . }}
|
||||
labels:
|
||||
{{- include "nodepool.common.labels" . | indent 4 }}
|
||||
stringData:
|
||||
nodepool.yaml: |
|
||||
{{ toYaml .Values.config | indent 4 }}
|
||||
clouds.yaml: |
|
||||
clouds:
|
||||
{{ toYaml .Values.clouds | indent 6 }}
|
14
charts/nodepool/values.yaml
Normal file
14
charts/nodepool/values.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
builder:
|
||||
enabled: true
|
||||
replicas: 1
|
||||
|
||||
launcher:
|
||||
enabled: true
|
||||
replicas: 1
|
||||
|
||||
config:
|
||||
webapp:
|
||||
port: 8005
|
||||
listen_address: 0.0.0.0
|
||||
images-dir: /opt/nodepool
|
7
zuul.d/project.yaml
Normal file
7
zuul.d/project.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
- project:
|
||||
check:
|
||||
jobs:
|
||||
- chart-testing-lint
|
||||
gate:
|
||||
jobs:
|
||||
- chart-testing-lint
|
Loading…
Reference in New Issue
Block a user