Skip to content

Commit

Permalink
Replace GKE 1.11 with 1.13 (#1177)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Martinez Gotor committed Sep 25, 2019
1 parent ac7a4f2 commit 9a3f04d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Expand Up @@ -42,14 +42,14 @@ workflows:
- test_dashboard
- build_go_images
- build_dashboard
- GKE_1_11_MASTER:
- GKE_1_13_MASTER:
<<: *build_on_master
requires:
- test_go
- test_dashboard
- build_go_images
- build_dashboard
- GKE_1_11_LATEST_RELEASE:
- GKE_1_13_LATEST_RELEASE:
<<: *build_on_master
requires:
- test_go
Expand All @@ -73,22 +73,22 @@ workflows:
- sync_chart:
<<: *build_on_master
requires:
- GKE_1_11_MASTER
- GKE_1_11_LATEST_RELEASE
- GKE_1_13_MASTER
- GKE_1_13_LATEST_RELEASE
- GKE_1_12_MASTER
- GKE_1_12_LATEST_RELEASE
- push_images:
<<: *build_always
requires:
- GKE_1_11_MASTER
- GKE_1_11_LATEST_RELEASE
- GKE_1_13_MASTER
- GKE_1_13_LATEST_RELEASE
- GKE_1_12_MASTER
- GKE_1_12_LATEST_RELEASE
- release:
<<: *build_on_tag
requires:
- GKE_1_11_MASTER
- GKE_1_11_LATEST_RELEASE
- GKE_1_13_MASTER
- GKE_1_13_LATEST_RELEASE
- GKE_1_12_MASTER
- GKE_1_12_LATEST_RELEASE

Expand Down Expand Up @@ -266,14 +266,14 @@ jobs:
at: /tmp/images
- run: for image in /tmp/images/*; do kind load image-archive "$image"; done
- <<: *run_e2e_tests
GKE_1_11_MASTER:
GKE_1_13_MASTER:
<<: *gke_test
environment:
GKE_BRANCH: "1.11"
GKE_1_11_LATEST_RELEASE:
GKE_BRANCH: "1.13"
GKE_1_13_LATEST_RELEASE:
<<: *gke_test
environment:
GKE_BRANCH: "1.11"
GKE_BRANCH: "1.13"
TEST_LATEST_RELEASE: 1
GKE_1_12_MASTER:
<<: *gke_test
Expand Down
2 changes: 2 additions & 0 deletions chart/kubeapps/templates/apprepository-deployment.yaml
Expand Up @@ -33,7 +33,9 @@ spec:
- --namespace={{ .Release.Namespace }}
- --mongo-url={{ template "kubeapps.mongodb.fullname" . }}
- --mongo-secret-name={{ .Values.mongodb.existingSecret }}
{{- if .Values.apprepository.crontab }}
- --crontab={{ .Values.apprepository.crontab }}
{{- end }}
resources:
{{ toYaml .Values.apprepository.resources | indent 12 }}
{{- with .Values.apprepository.nodeSelector }}
Expand Down
4 changes: 2 additions & 2 deletions chart/kubeapps/values.yaml
Expand Up @@ -97,8 +97,8 @@ frontend:
apprepository:
# Running a single controller replica to avoid sync job duplication
replicaCount: 1
# Schedule for syncing apprepositories
crontab: "*/10 * * * *"
# Schedule for syncing apprepositories. Every ten minutes by default
# crontab: "*/10 * * * *"
image:
registry: docker.io
repository: kubeapps/apprepository-controller
Expand Down

0 comments on commit 9a3f04d

Please sign in to comment.