Skip to content

Commit

Permalink
Update manifests to v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlisid committed Nov 15, 2024
1 parent 623cc4e commit 61adf4e
Show file tree
Hide file tree
Showing 17 changed files with 1,486 additions and 103 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ GIT_TREE_STATE=$(shell if [[ -z "`git status --porcelain`" ]]; then echo "clean"
DOCKER_PUSH?=false
DOCKER_BUILD_ARGS?=
IMAGE_NAMESPACE?=quay.io/numaproj
VERSION?=v1.2.1
BASE_VERSION:=v1.2.1
VERSION?=v1.2.2
BASE_VERSION:=v1.2.2

override LDFLAGS += \
-X ${PACKAGE}.version=${VERSION} \
Expand Down
12 changes: 12 additions & 0 deletions api/json-schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -670,6 +670,9 @@
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
Expand Down Expand Up @@ -728,6 +731,9 @@
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
Expand Down Expand Up @@ -1143,6 +1149,9 @@
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
Expand Down Expand Up @@ -1201,6 +1210,9 @@
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
Expand Down
14 changes: 13 additions & 1 deletion api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"swagger": "2.0",
"info": {
"title": "Numaflow",
"version": "v1.2.1"
"version": "v1.2.2"
},
"paths": {},
"definitions": {
Expand Down Expand Up @@ -654,6 +654,9 @@
"io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList": {
"description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.",
"type": "object",
"required": [
"items"
],
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
Expand Down Expand Up @@ -712,6 +715,9 @@
"io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList": {
"description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.",
"type": "object",
"required": [
"items"
],
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
Expand Down Expand Up @@ -1127,6 +1133,9 @@
"io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList": {
"description": "ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.",
"type": "object",
"required": [
"items"
],
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
Expand Down Expand Up @@ -1185,6 +1194,9 @@
"io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList": {
"description": "ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.",
"type": "object",
"required": [
"items"
],
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
Expand Down
4 changes: 2 additions & 2 deletions config/advanced-install/namespaced-controller-wo-crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ spec:
- controller
env:
- name: NUMAFLOW_IMAGE
value: quay.io/numaproj/numaflow:v1.2.1
value: quay.io/numaproj/numaflow:v1.2.2
- name: NAMESPACE
valueFrom:
fieldRef:
Expand Down Expand Up @@ -347,7 +347,7 @@ spec:
key: controller.leader.election.lease.renew.period
name: numaflow-cmd-params-config
optional: true
image: quay.io/numaproj/numaflow:v1.2.1
image: quay.io/numaproj/numaflow:v1.2.2
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resources:

images:
- name: quay.io/numaproj/numaflow
newTag: v1.2.1
newTag: v1.2.2

patches:
# For release scripts
Expand All @@ -28,7 +28,7 @@ patches:
- name: controller-manager
env:
- name: NUMAFLOW_IMAGE
value: quay.io/numaproj/numaflow:v1.2.1
value: quay.io/numaproj/numaflow:v1.2.2
- patch: |-
apiVersion: v1
kind: ConfigMap
Expand Down
6 changes: 3 additions & 3 deletions config/advanced-install/namespaced-numaflow-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ spec:
key: server.cors.allowed.origins
name: numaflow-cmd-params-config
optional: true
image: quay.io/numaproj/numaflow:v1.2.1
image: quay.io/numaproj/numaflow:v1.2.2
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down Expand Up @@ -294,7 +294,7 @@ spec:
key: server.base.href
name: numaflow-cmd-params-config
optional: true
image: quay.io/numaproj/numaflow:v1.2.1
image: quay.io/numaproj/numaflow:v1.2.2
imagePullPolicy: Always
name: server-init
volumeMounts:
Expand All @@ -313,7 +313,7 @@ spec:
key: server.disable.auth
name: numaflow-cmd-params-config
optional: true
image: quay.io/numaproj/numaflow:v1.2.1
image: quay.io/numaproj/numaflow:v1.2.2
imagePullPolicy: Always
name: server-secrets-init
securityContext:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resources:

images:
- name: quay.io/numaproj/numaflow
newTag: v1.2.1
newTag: v1.2.2

patches:
- patch: |-
Expand Down
6 changes: 3 additions & 3 deletions config/advanced-install/numaflow-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ spec:
key: server.cors.allowed.origins
name: numaflow-cmd-params-config
optional: true
image: quay.io/numaproj/numaflow:v1.2.1
image: quay.io/numaproj/numaflow:v1.2.2
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down Expand Up @@ -305,7 +305,7 @@ spec:
key: server.base.href
name: numaflow-cmd-params-config
optional: true
image: quay.io/numaproj/numaflow:v1.2.1
image: quay.io/numaproj/numaflow:v1.2.2
imagePullPolicy: Always
name: server-init
volumeMounts:
Expand All @@ -324,7 +324,7 @@ spec:
key: server.disable.auth
name: numaflow-cmd-params-config
optional: true
image: quay.io/numaproj/numaflow:v1.2.1
image: quay.io/numaproj/numaflow:v1.2.2
imagePullPolicy: Always
name: server-secrets-init
securityContext:
Expand Down
2 changes: 1 addition & 1 deletion config/advanced-install/numaflow-server/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ namespace: numaflow-system

images:
- name: quay.io/numaproj/numaflow
newTag: v1.2.1
newTag: v1.2.2

Loading

0 comments on commit 61adf4e

Please sign in to comment.