UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Ironbank Containers
O
Opensource
Istio-1.5
pilot-1.5
Commits
82dbf58f
Commit
82dbf58f
authored
Jun 19, 2020
by
Andy Maksymowicz
Committed by
gavin.scallon
Jun 19, 2020
Browse files
Development
parent
9545df1b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
19 deletions
+45
-19
Dockerfile
Dockerfile
+10
-14
Jenkinsfile
Jenkinsfile
+1
-1
README.md
README.md
+0
-2
download.yaml
download.yaml
+2
-2
renovate.json
renovate.json
+32
-0
No files found.
Dockerfile
View file @
82dbf58f
###############################################################
# Default registry variables
ARG
BASE_REGISTRY=nexus-docker-secure.levelup-dev.io
ARG
BASE_IMAGE=redhat/ubi/ubi8
ARG
BASE_TAG=8.2
###############################################################
# Copy Pilot contents to base image
FROM
opensource/istio/pilot/pilot:1.5.4 AS base
FROM
istio/pilot:1.5.6 AS base
FROM
${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
LABEL
name="istio-pilot" \
maintainer="gavin.scallon@parsons.com" \
vendor="Open Source" \
version="1.5.4" \
release="1" \
summary="Istio Pilot provides traffic management capabilities in the Istio Service mesh" \
description="provides service discovery for the Envoy sidecars, traffic management capabilities for intelligent routing, and resiliency."
LABEL
org.opencontainers.image.title="pilot" \
org.opencontainers.image.description="Istio Pilot provides traffic management capabilities in the Istio Service mesh." \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.url="https://istio.io" \
org.opencontainers.image.version="1.5.6" \
maintainer="cht@dsop.io"
COPY
--from=base /usr/local/bin/ /usr/local/bin/
COPY
--from=base /cacert.pem /cacert.pem
RUN
dnf update
-y
&&
\
dnf clean all
&&
\
rm
-rf
/var/cache/dnf
/
rm
-rf
/var/cache/dnf
EXPOSE
80 443
USER
1001
###############################################################
ENTRYPOINT
[ "/usr/local/bin/pilot-discovery" ]
Jenkinsfile
View file @
82dbf58f
@Library
(
'DCCSCR@master'
)
_
dccscrPipeline
(
version:
"1.5.
4
"
)
dccscrPipeline
(
version:
"1.5.
6
"
)
README.md
View file @
82dbf58f
# pilot-1.5
Version 1.5.4
# To Build/Run
```
bash
# Download the tar of the image from the Iron Bank and
...
...
download.yaml
View file @
82dbf58f
---
resources
:
-
url
:
"
docker://docker.io/istio/pilot@sha256:
21f2b95e53bff9c6b5466825c0c2155c73c18f3aaaf32557195a36fad8b1544b
"
tag
:
"
opensource/
istio/pilot
/pilot
:1.5.
4
"
-
url
:
"
docker://docker.io/istio/pilot@sha256:
39c9210e57c005914934dc1e3ade691376f98638e7f6f560b3844d1f83a00d8d
"
tag
:
"
istio/pilot:1.5.
6
"
renovate.json
0 → 100644
View file @
82dbf58f
{
"assignees"
:
[
"@gavin.scallon"
],
"baseBranches"
:
[
"development"
],
"packageRules"
:
[
{
"datasources"
:
[
"docker"
],
"packageNames"
:
[
"istio/pilot"
],
"separateMinorPatch"
:
true
,
"minor"
:
{
"enabled"
:
false
}
}
],
"regexManagers"
:
[
{
"fileMatch"
:
[
"^Dockerfile$"
],
"matchStrings"
:
[
"version=
\"
(?<currentValue>.*?)
\"
"
],
"depNameTemplate"
:
"istio/pilot"
,
"datasourceTemplate"
:
"docker"
},
{
"fileMatch"
:
[
"^Jenkinsfile$"
],
"matchStrings"
:
[
"version:
\\
s+
\"
(?<currentValue>.*?)
\"
"
],
"depNameTemplate"
:
"istio/pilot"
,
"datasourceTemplate"
:
"docker"
}
]
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment