Skip to content

Commit 9f809ed

Browse files
authored
Pin manifest plugin version (#9381)
**What this PR does / why we need it**: CI was failing https://drone.grafana.net/grafana/loki/23216/19/2, we need to apply the changes from #9342 to 2.8.x. **Which issue(s) this PR fixes**: Fixes #<issue number> **Special notes for your reviewer**: **Checklist** - [ ] Reviewed the [`CONTRIBUTING.md`](https://github.com/grafana/loki/blob/main/CONTRIBUTING.md) guide (**required**) - [ ] Documentation added - [ ] Tests updated - [ ] `CHANGELOG.md` updated - [ ] Changes that require user attention or interaction to upgrade are documented in `docs/sources/upgrading/_index.md`
1 parent c7cb077 commit 9f809ed

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.drone/drone.jsonnet

+2-2
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ local manifest(apps) = pipeline('manifest') {
389389
steps: std.foldl(
390390
function(acc, app) acc + [{
391391
name: 'manifest-' + app,
392-
image: 'plugins/manifest',
392+
image: 'plugins/manifest:1.4.0',
393393
settings: {
394394
// the target parameter is abused for the app's name,
395395
// as it is unused in spec mode. See docker-manifest.tmpl
@@ -422,7 +422,7 @@ local manifest_ecr(apps, archs) = pipeline('manifest-ecr') {
422422
steps: std.foldl(
423423
function(acc, app) acc + [{
424424
name: 'manifest-' + app,
425-
image: 'plugins/manifest',
425+
image: 'plugins/manifest:1.4.0',
426426
volumes: [{
427427
name: 'dockerconf',
428428
path: '/.docker',

.drone/drone.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ name: manifest
11641164
steps:
11651165
- depends_on:
11661166
- clone
1167-
image: plugins/manifest
1167+
image: plugins/manifest:1.4.0
11681168
name: manifest-promtail
11691169
settings:
11701170
ignore_missing: false
@@ -1177,7 +1177,7 @@ steps:
11771177
- depends_on:
11781178
- clone
11791179
- manifest-promtail
1180-
image: plugins/manifest
1180+
image: plugins/manifest:1.4.0
11811181
name: manifest-loki
11821182
settings:
11831183
ignore_missing: false
@@ -1190,7 +1190,7 @@ steps:
11901190
- depends_on:
11911191
- clone
11921192
- manifest-loki
1193-
image: plugins/manifest
1193+
image: plugins/manifest:1.4.0
11941194
name: manifest-loki-canary
11951195
settings:
11961196
ignore_missing: false
@@ -1203,7 +1203,7 @@ steps:
12031203
- depends_on:
12041204
- clone
12051205
- manifest-loki-canary
1206-
image: plugins/manifest
1206+
image: plugins/manifest:1.4.0
12071207
name: manifest-loki-operator
12081208
settings:
12091209
ignore_missing: false
@@ -1682,7 +1682,7 @@ steps:
16821682
- depends_on:
16831683
- clone
16841684
- ecr-login
1685-
image: plugins/manifest
1685+
image: plugins/manifest:1.4.0
16861686
name: manifest-lambda-promtail
16871687
settings:
16881688
ignore_missing: true
@@ -1764,6 +1764,6 @@ kind: secret
17641764
name: gpg_private_key
17651765
---
17661766
kind: signature
1767-
hmac: ad2917515a4e42b876443346b4965a89c3983a14867cdb09ef8f41e83f224856
1767+
hmac: e55dd10435cadfde79f6f334a0d9ad45fc78e6568159c6d58673fcdd3e92d44e
17681768

17691769
...

0 commit comments

Comments
 (0)