Skip to content
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

Merge pull request #789 from tesshuflower/fips_fixes #790

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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /workspace
# We don't vendor modules. Enforce that behavior
ENV GOFLAGS=-mod=readonly
ENV GO111MODULE=on
ENV CGO_ENABLED=0
ENV CGO_ENABLED=1
ARG TARGETOS
ARG TARGETARCH
ENV GOOS=${TARGETOS:-linux}
Expand Down Expand Up @@ -58,7 +58,7 @@ COPY /mover-restic/minio-go ./minio-go

WORKDIR /workspace/restic

RUN go run build.go
RUN go run build.go --enable-cgo


######################################################################
Expand Down
2 changes: 1 addition & 1 deletion bundle/manifests/volsync.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ spec:
- --secure-listen-address=0.0.0.0:8443
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --tls-min-version=VersionTLS13
- --tls-min-version=VersionTLS12
- --v=0
image: quay.io/brancz/kube-rbac-proxy:v0.14.0
name: kube-rbac-proxy
Expand Down
2 changes: 1 addition & 1 deletion config/default/manager_auth_proxy_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
- "--secure-listen-address=0.0.0.0:8443"
- "--upstream=http://127.0.0.1:8080/"
- "--logtostderr=true"
- "--tls-min-version=VersionTLS13"
- "--tls-min-version=VersionTLS12"
- "--v=0"
ports:
- containerPort: 8443
Expand Down
2 changes: 1 addition & 1 deletion helm/volsync/templates/deployment-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
- --secure-listen-address=0.0.0.0:8443
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- "--tls-min-version=VersionTLS13"
- "--tls-min-version=VersionTLS12"
- --v=0
{{- if .Values.metrics.disableAuth }}
- --ignore-paths=/metrics
Expand Down