Skip to content

Commit

Permalink
Merge pull request #22 from JacekZubielik/esphome
Browse files Browse the repository at this point in the history
fix(nodeselector): fix code
  • Loading branch information
JacekZubielik authored May 22, 2024
2 parents 891cd86 + 4a80ade commit 6badda2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 30 deletions.
2 changes: 1 addition & 1 deletion charts/esphome/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v2
appVersion: 2024.2.1
description: ESPHome
name: esphome
version: 0.0.2
version: 0.0.3
keywords:
- esphome
type: application
Expand Down
49 changes: 20 additions & 29 deletions charts/esphome/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,45 +95,36 @@ readinessProbe:
successThreshold: 1
failureThreshold: 6
initialDelaySeconds: 30

ingress:
enabled: false
# className: ""
annotations:
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
nginx.ingress.kubernetes.io/server-snippets: |
location / {
proxy_set_header Upgrade $http_upgrade;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_cache_bypass $http_upgrade;
}
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
labels: {}
path: /
hosts:
- host: esphome.local
paths:
- path: /
pathType: ImplementationSpecific
tls:
[]
# - secretName: letsencrypt-staging
# hosts:
# - esphome.local
- chart-example.local
## Extra paths to prepend to every host configuration. This is useful when working with annotation based services.
extraPaths: []
# - path: /*
# backend:
# serviceName: ssl-redirect
# servicePort: use-annotation
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

resources: {}
# requests:
# cpu: "1"
# memory: "256Mi"
# limits:
# cpu: "1"
# memory: "512Mi"
nodeSelector:
kubernetes.io/hostname: {}

nodeSelector: {}
affinity: {}
tolerations: []
persistence:
Expand Down

0 comments on commit 6badda2

Please sign in to comment.