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

Pin manifest plugin version #9381

Merged
merged 1 commit into from
May 3, 2023
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 .drone/drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ local manifest(apps) = pipeline('manifest') {
steps: std.foldl(
function(acc, app) acc + [{
name: 'manifest-' + app,
image: 'plugins/manifest',
image: 'plugins/manifest:1.4.0',
settings: {
// the target parameter is abused for the app's name,
// as it is unused in spec mode. See docker-manifest.tmpl
Expand Down Expand Up @@ -422,7 +422,7 @@ local manifest_ecr(apps, archs) = pipeline('manifest-ecr') {
steps: std.foldl(
function(acc, app) acc + [{
name: 'manifest-' + app,
image: 'plugins/manifest',
image: 'plugins/manifest:1.4.0',
volumes: [{
name: 'dockerconf',
path: '/.docker',
Expand Down
12 changes: 6 additions & 6 deletions .drone/drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ name: manifest
steps:
- depends_on:
- clone
image: plugins/manifest
image: plugins/manifest:1.4.0
name: manifest-promtail
settings:
ignore_missing: false
Expand All @@ -1177,7 +1177,7 @@ steps:
- depends_on:
- clone
- manifest-promtail
image: plugins/manifest
image: plugins/manifest:1.4.0
name: manifest-loki
settings:
ignore_missing: false
Expand All @@ -1190,7 +1190,7 @@ steps:
- depends_on:
- clone
- manifest-loki
image: plugins/manifest
image: plugins/manifest:1.4.0
name: manifest-loki-canary
settings:
ignore_missing: false
Expand All @@ -1203,7 +1203,7 @@ steps:
- depends_on:
- clone
- manifest-loki-canary
image: plugins/manifest
image: plugins/manifest:1.4.0
name: manifest-loki-operator
settings:
ignore_missing: false
Expand Down Expand Up @@ -1682,7 +1682,7 @@ steps:
- depends_on:
- clone
- ecr-login
image: plugins/manifest
image: plugins/manifest:1.4.0
name: manifest-lambda-promtail
settings:
ignore_missing: true
Expand Down Expand Up @@ -1764,6 +1764,6 @@ kind: secret
name: gpg_private_key
---
kind: signature
hmac: ad2917515a4e42b876443346b4965a89c3983a14867cdb09ef8f41e83f224856
hmac: e55dd10435cadfde79f6f334a0d9ad45fc78e6568159c6d58673fcdd3e92d44e

...