Install metrics-server (#1)
continuous-integration/drone/push Build is failing Details

Reviewed-on: #1
This commit is contained in:
Nikolai Rodionov 2023-02-18 17:46:04 +00:00
parent 5389830dd0
commit 1a667f001e
11 changed files with 194 additions and 0 deletions

71
.drone.yml Normal file
View File

@ -0,0 +1,71 @@
---
# ----------------------------------------------
# -- Helmfile diff changes
# ----------------------------------------------
kind: pipeline
type: kubernetes
name: Show helmfile diffs
trigger:
branch:
exclude:
- main
event:
- push
steps:
- name: Diff badhouseplants
image: ghcr.io/helmfile/helmfile:canary
environment:
KUBECONFIG_CONTENT:
from_secret: KUBECONFIG_CONTENT
commands:
- mkdir $HOME/.kube
- echo $KUBECONFIG_CONTENT | base64 -d > $HOME/.kube/config
- helmfile -e badhouseplants diff
- name: Diff eterosoft
image: ghcr.io/helmfile/helmfile:canary
environment:
KUBECONFIG_CONTENT:
from_secret: KUBECONFIG_CONTENT
commands:
- mkdir $HOME/.kube
- echo $KUBECONFIG_CONTENT | base64 -d > $HOME/.kube/config
- helmfile -e etersoft diff
---
# ----------------------------------------------
# -- Helmfile apply changes
# ----------------------------------------------
kind: pipeline
type: kubernetes
name: Apply helmfile changes
trigger:
branch:
- main
event:
- push
steps:
- name: Diff badhouseplants
image: ghcr.io/helmfile/helmfile:canary
environment:
KUBECONFIG_CONTENT:
from_secret: KUBECONFIG_CONTENT
commands:
- mkdir $HOME/.kube
- echo $KUBECONFIG_CONTENT | base64 -d > $HOME/.kube/config
- helmfile -e badhouseplants apply
- name: Diff eterosoft
image: ghcr.io/helmfile/helmfile:canary
environment:
KUBECONFIG_CONTENT:
from_secret: KUBECONFIG_CONTENT
commands:
- mkdir $HOME/.kube
- echo $KUBECONFIG_CONTENT | base64 -d > $HOME/.kube/config
- helmfile -e etersoft apply

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# Kubernetes configuration
[![Build Status](https://drone.badhouseplants.net/api/badges/badhouseplants/k8s-cluster-config/status.svg)](https://drone.badhouseplants.net/badhouseplants/k8s-cluster-config)

View File

View File

@ -0,0 +1,8 @@
storageClassName: longhorn
openvpn:
server: "tcp://195.201.250.50:1194"
service:
type: ClusterIP
port: 1194
targetPort: 1194
protocol: TCP

View File

@ -0,0 +1,4 @@
apiService:
insecureSkipTLSVerify: true
args:
- --kubelet-insecure-tls

5
environments.yaml Normal file
View File

@ -0,0 +1,5 @@
environments:
badhouseplants:
kubeContext: allanger@badhouseplants-microk8s
etersoft:
kubeContext: allanger@etersoft

0
etersoft/helmfile.yaml Normal file
View File

View File

@ -0,0 +1,43 @@
storageClassName: microk8s-hostpath
openvpn:
server: "tcp://91.232.225.63:1194"
service:
type: ClusterIP
port: 1194
targetPort: 1194
protocol: TCP
istio-resources:
enabled: true
gateways:
- metadata:
name: etersoft-vpn
namespace: istio-system
spec:
selector:
istio: ingressgateway
servers:
- hosts:
- '*'
port:
name: openvpn
number: 1194
protocol: TCP
# virtual_services:
# - metadata:
# name: openvpn
# spec:
# hosts:
# - '*'
# gateways:
# - istio-system/etersoft-vpn
# tcp:
# - match:
# - port: 1194
# route:
# - destination:
# host: openvpn
# port:
# number: 1194
#
#
#

15
helmfile.yaml Normal file
View File

@ -0,0 +1,15 @@
---
{{ readFile "releases.yaml" }}
bases:
- environments.yaml
- repositories.yaml
releases:
- <<: *metrics-server
installed: true
namespace: kube-system
createNamespace: false
helmfiles:
- path: {{.Environment.Name }}/helmfile.yaml

40
releases.yaml Normal file
View File

@ -0,0 +1,40 @@
---
templates:
crd-management-hook:
hooks:
- events: ["preapply"]
showlogs: true
command: "sh"
args:
- -c
- "helm show crds {{ .Release.Chart }} --version {{ .Release.Version }}| kubectl apply -f -"
- events: ["prepare"]
showlogs: true
command: "sh"
args:
- -c
- "helm show crds {{ .Release.Chart }} --version {{ .Release.Version }} | kubectl diff -f - || true"
- events: ["postuninstall"]
showlogs: true
command: "sh"
args:
- -c
- "helm show crds {{ .Release.Chart }} --version {{ .Release.Version }} | kubectl delete -f -"
# ----------------------------
# -- Releases
# ----------------------------
metrics-server: &metrics-server
name: metrics-server
chart: metrics-server/metrics-server
version: 3.8.3
values:
- common/values.{{ .Release.Name }}.yaml
inherit:
- template: crd-management-hook
openvpn: &openvpn
name: openvpn
chart: allanger-charts/openvpn
version: 1.0.1
values:
- "{{ .Environment.Name }}/values/values.{{ .Release.Name }}.yaml"

6
repositories.yaml Normal file
View File

@ -0,0 +1,6 @@
---
repositories:
- name: metrics-server
url: https://kubernetes-sigs.github.io/metrics-server/
- name: allanger-charts
url: https://allanger.github.io/allanger-charts