UNCLASSIFIED

Commit 154afa3c authored by sean.melissari's avatar sean.melissari
Browse files

Merge branch 'add-renovate' into 'development'

Add renovate

See merge request !2
parents 9006cdf3 255440fd
Pipeline #23476 passed with stage
...@@ -3,30 +3,24 @@ ...@@ -3,30 +3,24 @@
ARG BASE_REGISTRY=nexus-docker-secure.levelup-dev.io ARG BASE_REGISTRY=nexus-docker-secure.levelup-dev.io
ARG BASE_IMAGE=redhat/ubi/ubi8 ARG BASE_IMAGE=redhat/ubi/ubi8
ARG BASE_TAG=8.2 ARG BASE_TAG=8.2
###############################################################
FROM opensource/istio-1.5/galley-1.5/galley:1.5.4 AS base FROM istio/galley:1.5.4 AS base
FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
LABEL org.opencontainers.image.title="galley" \
org.opencontainers.image.description="Istio Galley provides configuration management services for Istio." \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.url="https://istio.io" \
org.opencontainers.image.version="1.5.4" \
maintainer="cht@dsop.io"
COPY --from=base /usr/local/bin/ /usr/local/bin/ COPY --from=base /usr/local/bin/ /usr/local/bin/
RUN dnf update -y && \ RUN dnf update -y && \
dnf clean all && \ dnf clean all && \
rm -rf /var/cache/dnf/ rm -rf /var/cache/dnf/
###############################################################
# Provide label information
LABEL name="istio-galley" \
maintainer="gavin.scallon@parsons.com" \
vendor="Open Source" \
version="1.5.4" \
release="1" \
summary="istio-galley" \
description="Galley provides configuration management services for Istio"
###############################################################
# Run as non-root user
USER 1001 USER 1001
###############################################################
HEALTHCHECK --interval=1m --start-period=30s CMD version
###############################################################
ENTRYPOINT [ "/usr/local/bin/galley" ] ENTRYPOINT [ "/usr/local/bin/galley" ]
# galley # galley
Version 1.5.4
# To Build/Run # To Build/Run
```bash ```bash
# Navigate to the download location of the galley tar file obtained from the # Navigate to the download location of the galley tar file obtained from the
......
--- ---
resources: resources:
- url: "docker://docker.io/istio/galley@sha256:af917d433ce674fe072f891c0ee581ff1c0165b9827bab4ef2951d9d43dda542" - url: "docker://docker.io/istio/galley@sha256:af917d433ce674fe072f891c0ee581ff1c0165b9827bab4ef2951d9d43dda542"
tag: opensource/istio-1.5/galley-1.5/galley:1.5.4 tag: "istio/galley:1.5.4"
{
"assignees": ["@gavin.scallon"],
"baseBranches": ["development"],
"packageRules": [
{
"datasources": ["docker"],
"packageNames": ["istio/galley"],
"separateMinorPatch": true,
"minor": {
"enabled": false
}
}
],
"regexManagers": [
{
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"version=\"(?<currentValue>.*?)\""
],
"depNameTemplate": "istio/galley",
"datasourceTemplate": "docker"
},
{
"fileMatch": ["^Jenkinsfile$"],
"matchStrings": [
"version:\\s+\"(?<currentValue>.*?)\""
],
"depNameTemplate": "istio/galley",
"datasourceTemplate": "docker"
}
]
}
\ No newline at end of file
  • Pipeline Status: SUCCESS
    Branch: development

    graph LR
      0([setup]):::INTERNAL_SUCCESS --> 1([Import Artifacts]):::SUCCESS --> 2((/)):::INTERNAL_SUCCESS --> 3([Stage Artifacts]):::SUCCESS --> 4((/)):::INTERNAL_SUCCESS --> 5([Build]):::SUCCESS --> 6([Publish, Scan & Report]):::INTERNAL_NOT_BUILT
    
    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