-
Notifications
You must be signed in to change notification settings - Fork 1
fix(helm): update chart windmill ( 4.0.10 → 4.0.51 ) #2732
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/windmill-4.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- kubernetes/subterra/apps/apps/windmill/app Kustomization: flux-system/cluster-apps-windmill HelmRelease: apps/windmill
+++ kubernetes/subterra/apps/apps/windmill/app Kustomization: flux-system/cluster-apps-windmill HelmRelease: apps/windmill
@@ -13,13 +13,13 @@
chart: windmill
interval: 5m
sourceRef:
kind: HelmRepository
name: windmill-charts
namespace: flux-system
- version: 4.0.10
+ version: 4.0.51
interval: 5m
timeout: 10m0s
values:
ingress:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod |
d553247 to
5c032e4
Compare
--- HelmRelease: apps/windmill Service: apps/windmill-lsp
+++ HelmRelease: apps/windmill Service: apps/windmill-lsp
@@ -1,15 +0,0 @@
----
-apiVersion: v1
-kind: Service
-metadata:
- name: windmill-lsp
-spec:
- ports:
- - port: 3001
- protocol: TCP
- targetPort: 3001
- selector:
- app.kubernetes.io/name: windmill-lsp
- sessionAffinity: ClientIP
- type: ClusterIP
-
--- HelmRelease: apps/windmill Deployment: apps/windmill-app
+++ HelmRelease: apps/windmill Deployment: apps/windmill-app
@@ -34,13 +34,13 @@
preStop:
exec:
command:
- /bin/sh
- -c
- sleep 30
- image: ghcr.io/windmill-labs/windmill:1.596.0
+ image: ghcr.io/windmill-labs/windmill:1.614.0
imagePullPolicy: Always
ports:
- containerPort: 8000
- containerPort: 8001
readinessProbe:
timeoutSeconds: 1
--- HelmRelease: apps/windmill Deployment: apps/windmill-lsp
+++ HelmRelease: apps/windmill Deployment: apps/windmill-lsp
@@ -1,41 +0,0 @@
----
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: windmill-lsp
- labels:
- app: windmill-lsp
- app.kubernetes.io/name: windmill-lsp
- release: windmill
- heritage: Helm
-spec:
- replicas: 1
- strategy:
- type: RollingUpdate
- rollingUpdate:
- maxSurge: 3
- maxUnavailable: 0
- selector:
- matchLabels:
- app: windmill-lsp
- template:
- metadata:
- labels:
- app: windmill-lsp
- app.kubernetes.io/name: windmill-lsp
- container: windmill-lsp
- spec:
- containers:
- - name: windmill-lsp
- securityContext: null
- image: ghcr.io/windmill-labs/windmill-lsp:1.596.0
- imagePullPolicy: Always
- ports:
- - containerPort: 3001
- resources:
- limits:
- memory: 1Gi
- securityContext:
- runAsNonRoot: false
- runAsUser: 0
-
--- HelmRelease: apps/windmill Deployment: apps/windmill-workers-default
+++ HelmRelease: apps/windmill Deployment: apps/windmill-workers-default
@@ -31,13 +31,13 @@
serviceAccountName: windmill
terminationGracePeriodSeconds: 604800
containers:
- name: windmill-worker
securityContext:
privileged: true
- image: ghcr.io/windmill-labs/windmill:1.596.0
+ image: ghcr.io/windmill-labs/windmill:1.614.0
imagePullPolicy: Always
ports:
- containerPort: 8001
volumeMounts: null
env:
- name: DATABASE_URL
--- HelmRelease: apps/windmill Ingress: apps/windmill
+++ HelmRelease: apps/windmill Ingress: apps/windmill
@@ -17,15 +17,22 @@
http:
paths:
- path: /ws/
pathType: Prefix
backend:
service:
- name: windmill-lsp
+ name: windmill-extra
port:
number: 3001
+ - path: /ws_debug/
+ pathType: Prefix
+ backend:
+ service:
+ name: windmill-extra
+ port:
+ number: 3003
- host: windmill.glants.xyz
http:
paths:
- path: /
pathType: Prefix
backend:
--- HelmRelease: apps/windmill Service: apps/windmill-extra
+++ HelmRelease: apps/windmill Service: apps/windmill-extra
@@ -0,0 +1,24 @@
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: windmill-extra
+spec:
+ ports:
+ - port: 3001
+ protocol: TCP
+ targetPort: 3001
+ name: lsp
+ - port: 3002
+ protocol: TCP
+ targetPort: 3002
+ name: multiplayer
+ - port: 3003
+ protocol: TCP
+ targetPort: 3003
+ name: debugger
+ selector:
+ app.kubernetes.io/name: windmill-extra
+ sessionAffinity: ClientIP
+ type: ClusterIP
+
--- HelmRelease: apps/windmill Deployment: apps/windmill-extra
+++ HelmRelease: apps/windmill Deployment: apps/windmill-extra
@@ -0,0 +1,61 @@
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: windmill-extra
+ labels:
+ app: windmill-extra
+ app.kubernetes.io/name: windmill-extra
+ release: windmill
+ heritage: Helm
+spec:
+ replicas: 1
+ strategy:
+ type: RollingUpdate
+ rollingUpdate:
+ maxSurge: 3
+ maxUnavailable: 0
+ selector:
+ matchLabels:
+ app: windmill-extra
+ template:
+ metadata:
+ labels:
+ app: windmill-extra
+ app.kubernetes.io/name: windmill-extra
+ container: windmill-extra
+ spec:
+ containers:
+ - name: windmill-extra
+ securityContext: null
+ image: ghcr.io/windmill-labs/windmill-extra:1.614.0
+ imagePullPolicy: Always
+ ports:
+ - containerPort: 3001
+ name: lsp
+ - containerPort: 3002
+ name: multiplayer
+ - containerPort: 3003
+ name: debugger
+ env:
+ - name: DEBUGGER_PORT
+ value: '3003'
+ - name: ENABLE_LSP
+ value: 'true'
+ - name: ENABLE_MULTIPLAYER
+ value: 'false'
+ - name: ENABLE_DEBUGGER
+ value: 'true'
+ - name: ENABLE_NSJAIL
+ value: 'false'
+ - name: REQUIRE_SIGNED_DEBUG_REQUESTS
+ value: 'true'
+ - name: WINDMILL_BASE_URL
+ value: https://windmill-app:8000
+ resources:
+ limits:
+ memory: 1Gi
+ securityContext:
+ runAsNonRoot: false
+ runAsUser: 0
+ |
5c032e4 to
8de0d65
Compare
8de0d65 to
10b699a
Compare
10b699a to
5acc234
Compare
5acc234 to
0dd4f77
Compare
0dd4f77 to
ac0f829
Compare
c2dfefd to
2a61edf
Compare
2a61edf to
c20a5eb
Compare
c20a5eb to
b716f05
Compare
b716f05 to
e0a9195
Compare
e0a9195 to
4f8e956
Compare
d5ab1b8 to
fe7c55e
Compare
fe7c55e to
7c63edb
Compare
674cab9 to
6937561
Compare
6937561 to
9e9eaff
Compare
b14503b to
0c8ba92
Compare
0c8ba92 to
36827af
Compare
36827af to
3c99326
Compare
3c99326 to
918f90e
Compare
918f90e to
f97384f
Compare
331af99 to
5053474
Compare
5053474 to
1f66ff9
Compare
| datasource | package | from | to | | ---------- | -------- | ------ | ------ | | helm | windmill | 4.0.10 | 4.0.51 |
1f66ff9 to
512196c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.0.10→4.0.51Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
windmill-labs/windmill-helm-charts (windmill)
v4.0.51Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.50Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.49Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.48Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.47Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.46Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.45Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.44Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.43Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.42Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.41Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.40Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.39Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.38Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.37Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.36Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.35Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.34Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.33Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.32Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.31Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.30Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.29Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.28Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.27Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.26Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.25Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.24Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.23Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.22Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.21Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.20Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.19Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.18Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.17Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.16Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.15Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.14Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.13Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.12Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
v4.0.11Compare Source
Windmill - Turn scripts into endpoints, workflows and UIs in minutes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.