blob: 0b76639c301b7eb74dbb8fddefeb8c44354125ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
plugins:
flux-helmrelease-reconcile:
shortCut: r
confirm: false
description: Reconcile Flux HelmRelease
scopes:
- helmrelease
background: true
command: bash
args:
- -c
- |
flux -n $NAMESPACE suspend helmrelease $NAME
flux -n $NAMESPACE resume helmrelease $NAME
flux -n $NAMESPACE reconcile helmrelease $NAME --with-source
flux-kustomization-reconcile:
shortCut: r
confirm: false
description: Reconcile Flux Kustomization
scopes:
- kustomization
background: true
command: bash
args:
- -c
- |
flux -n $NAMESPACE suspend kustomization $NAME
flux -n $NAMESPACE resume kustomization $NAME
flux -n $NAMESPACE reconcile kustomization $NAME --with-source
flux-gitrepo-reconcile:
shortCut: r
confirm: false
description: Reconcile Flux gitrepository
scopes:
- gitrepository
background: true
command: bash
args:
- -c
- |
flux -n $NAMESPACE suspend source git $NAME
flux -n $NAMESPACE resume source git $NAME
flux -n $NAMESPACE reconcile source git $NAME
flux-imagerepo-reconcile:
shortCut: r
confirm: false
description: Reconcile Flux imagerepository
scopes:
- imagerepository
background: true
command: bash
args:
- -c
- |
flux -n $NAMESPACE suspend image repository $NAME
flux -n $NAMESPACE resume image repository $NAME
flux -n $NAMESPACE reconcile image repository $NAME
flux-imagepolicy-reconcile:
shortCut: r
confirm: false
description: Reconcile Flux imagepolicy
scopes:
- imagepolicy
background: true
command: bash
args:
- -c
- |
flux -n $NAMESPACE suspend image policy $NAME
flux -n $NAMESPACE resume image policy $NAME
flux -n $NAMESPACE reconcile image policy $NAME
|