Skip to content

Commit 034d029

Browse files
committed
[TMP] update graph and bump VERSION
(cherry picked from commit 31af50c)
1 parent 5007457 commit 034d029

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
VERSION_MAJOR=130
22
VERSION_MINOR=0
3-
VERSION_PATCH=0
3+
VERSION_PATCH=1
44
VERSION_SUFFIX=-dev

catalog-source/catalog/nginx-operator/channels/stable.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ package: nginx-operator
44
name: stable
55
entries:
66
- name: nginx-operator.v4.12.0
7+
replaces: nginx-operator.v4.11.3

salt/metalk8s/addons/nginx-ingress-control-plane/deployed/update-metadata.sls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# this state needs to be removed in MetalK8S 131.0
2-
{%- set namespace_exists = salt.metalk8s_kubernetes.object_exists(
2+
{%- set daemonset = salt.metalk8s_kubernetes.get_object(
33
kind="DaemonSet", apiVersion="v1", name="ingress-nginx-control-plane", namespace="ingress-nginx-control-plane") %}
4-
{%- if namespace_exists %}
4+
{%- if daemonset is not none %}
55

66
include:
77
- .chart

salt/metalk8s/addons/nginx-ingress/deployed/update-metadata.sls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# this state needs to be removed in MetalK8S 131.0
2-
{%- set namespace_exists = salt.metalk8s_kubernetes.object_exists(
2+
{%- set daemonset = salt.metalk8s_kubernetes.get_object(
33
kind="DaemonSet", apiVersion="v1", name="ingress-nginx", namespace="metalk8s-ingress") %}
4-
{%- if namespace_exists %}
4+
{%- if daemonset is not none %}
55

66
include:
77
- .chart

0 commit comments

Comments
 (0)