File tree 2 files changed +22
-3
lines changed
2 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 98
98
working-directory : ./k8
99
99
run : make push-images
100
100
101
+ - name : Set argo namespace
102
+ working-directory : ./k8
103
+ run : make k8-argo-default
104
+
101
105
- name : Submit argo jobs
102
106
working-directory : ./k8
103
- run : make argo-submit
107
+ run : make argo-submit | tee argo-submit
104
108
109
+ - name : Upload submit artifact
110
+ uses : actions/upload-artifact@v2
111
+ with :
112
+ name : argo-submit
113
+ path : argo-submit
114
+
105
115
- name : list argo jobs
106
- run : argo list
116
+ run : argo list | tee argo-list
117
+
118
+ - name : Upload list artifact
119
+ uses : actions/upload-artifact@v2
120
+ with :
121
+ name : argo-list
122
+ path : argo-list
Original file line number Diff line number Diff line change @@ -173,4 +173,7 @@ docker-bake.json: Makefile
173
173
174
174
175
175
buildx-driver :
176
- docker buildx create --driver kubernetes --use --driver-opt namespace=buildx --node buildx0
176
+ docker buildx create --driver kubernetes --use --driver-opt namespace=buildx --node buildx0
177
+
178
+ k8-argo-default :
179
+ kubectl config set-context --current --namespace=argo
You can’t perform that action at this time.
0 commit comments