Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-zookeeper/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.24-alpine3.22 as builder
FROM --platform=$BUILDPLATFORM golang:1.24.6-alpine3.22 as builder

Check warning on line 1 in docker-zookeeper/docker/Dockerfile

View workflow job for this annotation

GitHub Actions / qubership-docker-zookeeper

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in docker-zookeeper/docker/Dockerfile

View workflow job for this annotation

GitHub Actions / qubership-docker-zookeeper

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
ARG BUILDPLATFORM
ARG TARGETOS
ARG TARGETARCH
Expand Down Expand Up @@ -33,7 +33,7 @@
ZOOKEEPER_BACKUP_PORT=8081

WORKDIR /
COPY --from=builder --chown=${USER_UID} /workspace/zookeeper-assistant .

Check warning on line 36 in docker-zookeeper/docker/Dockerfile

View workflow job for this annotation

GitHub Actions / qubership-docker-zookeeper

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_UID' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 36 in docker-zookeeper/docker/Dockerfile

View workflow job for this annotation

GitHub Actions / qubership-docker-zookeeper

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$USER_UID' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# Install misc tools
RUN set -x \
Expand Down
2 changes: 1 addition & 1 deletion docker-zookeeper/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module mod

go 1.24
go 1.24.6

require (
github.com/go-zookeeper/zk v1.0.4
Expand Down
2 changes: 1 addition & 1 deletion operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.24-alpine3.22 as builder
FROM --platform=$BUILDPLATFORM golang:1.24.6-alpine3.22 as builder

Check warning on line 2 in operator/Dockerfile

View workflow job for this annotation

GitHub Actions / qubership-zookeeper-operator

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 2 in operator/Dockerfile

View workflow job for this annotation

GitHub Actions / qubership-zookeeper-operator

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
ARG BUILDPLATFORM
ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion operator/charts/helm/zookeeper-service/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 0.1.0
version: 0.10.7

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
10 changes: 5 additions & 5 deletions operator/charts/helm/zookeeper-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ global:
securityContext: {}

operator:
dockerImage: ghcr.io/netcracker/qubership-zookeeper-operator:main
dockerImage: ghcr.io/netcracker/qubership-zookeeper-operator:0.10.7
# tolerations:
# - key: "key1"
# operator: "Equal"
Expand Down Expand Up @@ -76,7 +76,7 @@ operator:

## Values for ZooKeeper deployment
zooKeeper:
dockerImage: "ghcr.io/netcracker/qubership-docker-zookeeper:main"
dockerImage: "ghcr.io/netcracker/qubership-docker-zookeeper:0.10.7"
affinity: {}
# affinity: {
# "podAntiAffinity": {
Expand Down Expand Up @@ -170,7 +170,7 @@ zooKeeper:
## Values for ZooKeeper Monitoring deployment
monitoring:
install: true
dockerImage: "ghcr.io/netcracker/qubership-zookeeper-monitoring:main"
dockerImage: "ghcr.io/netcracker/qubership-zookeeper-monitoring:0.10.7"
# affinity: {
# "podAffinity": {
# "preferredDuringSchedulingIgnoredDuringExecution": [
Expand Down Expand Up @@ -235,7 +235,7 @@ backupDaemon:
subjectAlternativeName:
additionalDnsNames: []
additionalIpAddresses: []
dockerImage: "ghcr.io/netcracker/qubership-zookeeper-backup-daemon:main"
dockerImage: "ghcr.io/netcracker/qubership-zookeeper-backup-daemon:0.10.7"
# affinity: {
# "podAffinity": {
# "preferredDuringSchedulingIgnoredDuringExecution": [
Expand Down Expand Up @@ -348,7 +348,7 @@ integrationTests:
]
}
}
image: "ghcr.io/netcracker/qubership-zookeeper-integration-tests:main"
image: "ghcr.io/netcracker/qubership-zookeeper-integration-tests:0.10.7"
tags: "zookeeper_crud"
# Please override "url" parameter with "6443" port for Kubernetes environment and "8443" for Openshift environment
url: "https://kube.com:6443"
Expand Down
2 changes: 1 addition & 1 deletion operator/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Netcracker/qubership-zookeeper/operator

go 1.24
go 1.24.6

require (
github.com/go-logr/logr v0.4.0
Expand Down
Loading