Skip to content

Commit

Permalink
update helm charts to support k8s 1.22 and 1.23 (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
rroufa authored Oct 5, 2022
1 parent 623249d commit bf5ec72
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
HELM_VERSION: 3.8.2
KUBEVAL_VERSION: v0.16.1
CONFTEST_VERSION: 0.27.0
K8S_VERSIONS: 1.22.9 1.21.4 1.20.10
KUBECTL_VERSION: v1.22.8
K8S_VERSIONS: 1.22.10 1.23.7
KUBECTL_VERSION: v1.22.10
KUBECONFIG: /home/circleci/.kube/config
MINIKUBE_VERSION: v1.25.2
MINIKUBE_VERSION: v1.22.10
MINIKUBE_HOME: /home/circleci
K8S_SCHEMAS: https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master
steps:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- run:
name: start minikube
command: |
minikube start --vm-driver=docker --cpus 2 --memory 5096 --network-plugin=cni --cni=calico --kubernetes-version=${KUBECTL_VERSION} &> $HOME/minikube.log 2>&1 < /dev/null
minikube start --vm-driver=docker --cpus 2 --memory 4000 --network-plugin=cni --cni=calico --kubernetes-version=${KUBECTL_VERSION} &> $HOME/minikube.log 2>&1 < /dev/null
- run:
name: debug node
command: |
Expand Down
2 changes: 1 addition & 1 deletion looker/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ home: https://github.com/honestica/lifen-charts
description: A Looker Helm chart for Kubernetes.
icon: https://looker.com/assets/img/images/logos/looker.svg
# type: application
version: 0.1.2
version: 0.1.3
keywords:
- looker
- google
Expand Down
2 changes: 1 addition & 1 deletion looker/templates/ingress-api.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- if .Values.ingressApi.enabled -}}
{{- $fullName := include "looker.fullname" . -}}
apiVersion: networking.k8s.io/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ $fullName }}-api
Expand Down
2 changes: 1 addition & 1 deletion looker/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "looker.fullname" . -}}
apiVersion: networking.k8s.io/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ $fullName }}
Expand Down

0 comments on commit bf5ec72

Please sign in to comment.