UNCLASSIFIED

Verified Commit 6c4b37ba authored by Steven Terhar's avatar Steven Terhar
Browse files

Update GitLab to the 13.2.3 Security Release

parent c0938be3
Pipeline #32983 failed with stage
ARG GITLAB_VERSION=v13.2.0-ubi8 ARG GITLAB_VERSION=v13.2.3-ubi8
ARG BASE_REGISTRY=nexus-docker-secure.levelup-nexus.svc.cluster.local:18082 ARG BASE_REGISTRY=nexus-docker-secure.levelup-nexus.svc.cluster.local:18082
ARG BASE_IMAGE=gitlab/gitlab/gitlab-rails ARG BASE_IMAGE=gitlab/gitlab/gitlab-rails
ARG BASE_TAG=13.2.0 ARG BASE_TAG=13.2.3
ARG RAILS_IMAGE=${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} ARG RAILS_IMAGE=${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
......
@Library('DCCSCR@master') _ @Library('DCCSCR@master') _
dccscrPipeline(version: "13.2.0") dccscrPipeline(version: "13.2.3")
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
set -euxo pipefail set -euxo pipefail
TAG=${1:-13.2.0} TAG=${1:-13.2.3}
REPOSITORY=${2:-} REPOSITORY=${2:-}
DOCKER_OPTS=${DOCKER_OPTS:-""} DOCKER_OPTS=${DOCKER_OPTS:-""}
......
resources: resources:
- url: "http://gitlab-ubi.s3.amazonaws.com/ubi8-build-dependencies-v13.2.0-ubi8/gitlab-task-runner-ee.tar.gz" - url: "http://gitlab-ubi.s3.amazonaws.com/ubi8-build-dependencies-v13.2.3-ubi8/gitlab-task-runner-ee.tar.gz"
filename: "gitlab-task-runner-ee.tar.gz" filename: "gitlab-task-runner-ee.tar.gz"
validation: validation:
type: "sha256" type: "sha256"
value: "ed7a08756e6c81546ac62bd8f64022d15fac6e2d5ae263e4bbfec36a94a0e564" value: "3248b16ac1be337b96bbbde153f35f4e9f09955dcdeb6145da3bc540a73e6a8e"
- url: "http://gitlab-ubi.s3.amazonaws.com/ubi8-build-dependencies-v13.2.0-ubi8/gitlab-python.tar.gz" - url: "http://gitlab-ubi.s3.amazonaws.com/ubi8-build-dependencies-v13.2.3-ubi8/gitlab-python.tar.gz"
filename: "gitlab-python.tar.gz" filename: "gitlab-python.tar.gz"
validation: validation:
type: "sha256" type: "sha256"
value: "de90479c921f72b62b7fc2ad3d203f64eee3c47027aca44547a5e1350b633686" value: "3785cfb72afc21a1e90f0826bd43fba45d3bed637b426b2de674dcc16595c36e"
...@@ -73,11 +73,11 @@ class ObjectStorageBackup ...@@ -73,11 +73,11 @@ class ObjectStorageBackup
end end
def upload_to_object_storage(source_path) def upload_to_object_storage(source_path)
dir_name = File.basename(source_path)
if @backend == "s3" if @backend == "s3"
dir_name = File.basename(source_path)
cmd = %W(s3cmd --stop-on-error sync #{source_path}/ s3://#{@remote_bucket_name}/#{dir_name}/) cmd = %W(s3cmd --stop-on-error sync #{source_path}/ s3://#{@remote_bucket_name}/#{dir_name}/)
elsif @backend == "gcs" elsif @backend == "gcs"
cmd = %W(gsutil -m rsync -r #{source_path}/ gs://#{@remote_bucket_name}) cmd = %W(gsutil -m rsync -r #{source_path}/ gs://#{@remote_bucket_name}/#{dir_name})
end end
output, status = run_cmd(cmd) output, status = run_cmd(cmd)
......
  • Pipeline Status: FAILURE
    FAILURE Stage: Whitelist Compare Lint
    Branch: release-gitlab-13-2-3

    graph LR
      0([setup]):::INTERNAL_FAILURE --> 3([Import Artifacts]):::NOT_BUILT --> 4((/)):::INTERNAL_NOT_BUILT --> 5([Stage Artifacts]):::NOT_BUILT --> 6((/)):::INTERNAL_NOT_BUILT --> 7([Build]):::NOT_BUILT --> 8([Publish, Scan & Report]):::INTERNAL_FAILURE
    
    classDef SUCCESS font-size:10px
    classDef FAILURE fill:#f44, font-size:10px
    classDef SKIPPED font-size:10px
    classDef ABORTED fill:#889, font-size:10px
    classDef INTERNAL_SUCCESS font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_FAILURE fill:#f44, font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_SKIPPED font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_ABORTED fill:#889, font-size:10px, stroke-dasharray: 2, 1
    
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment