Skip to content

Commit

Permalink
improvement(k8s): update bundled nginx controller version
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald committed Dec 13, 2019
1 parent ff0cbce commit 40729a4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions garden-service/src/plugins/kubernetes/status/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ export async function waitForResources({ ctx, provider, serviceName, resources,
statuses = await checkResourceStatuses(api, namespace, resources, log)

for (const status of statuses) {
const resource = status.resource

log.debug(`Status of ${resource.kind} ${resource.metadata.name} is "${status.state}"`)

if (status.state === "unhealthy") {
let msg = `Error deploying ${serviceName}: ${status.lastMessage}`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,20 @@ chart: stable/nginx-ingress
releaseName: garden-nginx
dependencies:
- default-backend
version: 0.25.1
version: 1.26.2
values:
name: ingress-controller
controller:
defaultBackendService: ${var.namespace}/default-backend
kind: DaemonSet
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
daemonset:
useHostPort: true
service:
omitClusterIP: true
minReadySeconds: 1
defaultBackend:
enabled: false

0 comments on commit 40729a4

Please sign in to comment.