Skip to content

Commit

Permalink
Showing 4 changed files with 35 additions and 16 deletions.
32 changes: 28 additions & 4 deletions .devops/pipelines/jobs.ci.build.docker.yaml
Original file line number Diff line number Diff line change
@@ -22,14 +22,38 @@ jobs:
- ${{ if eq(parameters.arch, 'arm64') }}:
- Agent.OSArchitecture -equals ARM64
variables:
- ${{ if eq(parameters.arch, 'amd64') }}:
- name: Docker.CLI.Architecture
value: amd64
- ${{ if eq(parameters.arch, 'arm64') }}:
- name: Docker.CLI.Architecture
value: arm64
- ${{ if eq(parameters.arch, 'arm') }}:
- name: Docker.CLI.Architecture
value: armhf
- name: Docker.Image.Architecture
value: ${{ parameters.arch }}

steps:
- task: DockerInstaller@0
displayName: 'Docker install'
inputs:
dockerVersion: '19.03.5'
- script: |
docker version
if [ "$?" -ne "0" ]; then
apt-get update
apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository \
"deb [arch=$(Docker.CLI.Architecture)] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io
fi
displayName: "Docker install"
- task: Docker@2
displayName: 'Build image'
2 changes: 1 addition & 1 deletion .devops/pipelines/stage.ci.yaml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ stages:
displayName: 'Create Artifacts directories'
- task: HelmInstaller@1
inputs:
helmVersionToInstall: '3.2.4'
helmVersionToInstall: '3.1.1'
displayName: "Helm install"
- script: |
cp README.md src/helm/reflector/README.md
5 changes: 0 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -5,8 +5,3 @@ updates:
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: docker
directory: "/src/ES.Kubernetes.Reflector.Host"
schedule:
interval: daily
open-pull-requests-limit: 10
12 changes: 6 additions & 6 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Configuration for probot-stale - https://github.com/probot/stale

# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 14
daysUntilStale: 60

# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
@@ -30,17 +30,17 @@ staleLabel: wontfix

# Comment to post when marking as stale. Set to `false` to disable
markComment: >
Automatically marked as stale because it has not had
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when removing the stale label.
unmarkComment: >
Stale status removed.
# unmarkComment: >
# Your comment here.

# Comment to post when closing a stale Issue or Pull Request.
closeComment: >
Closed due to lack of activity.
# closeComment: >
# Your comment here.

# Limit the number of actions per hour, from 1-30. Default is 30
limitPerRun: 30

0 comments on commit cadb33f

Please sign in to comment.