Skip to content

Commit

Permalink
🎨 format yamls
Browse files Browse the repository at this point in the history
Signed-off-by: Rintaro Okamura <rintaro.okamura@gmail.com>
  • Loading branch information
rinx committed Dec 22, 2020
1 parent d5e7f28 commit ccac36c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/e2e-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
e2e-deploy-redis-mysql:
name: 'E2E deploy test (Redis, MySQL)'
name: "E2E deploy test (Redis, MySQL)"
runs-on: ubuntu-latest
timeout-minutes: 45
if: startsWith( github.ref, 'refs/tags/') || github.event.action == 'labeled' && github.event.label.name == 'actions/e2e-deploy'
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
env:
DATASET: fashion-mnist-784-euclidean.hdf5
e2e-deploy-cassandra:
name: 'E2E deploy test (Cassandra)'
name: "E2E deploy test (Cassandra)"
runs-on: ubuntu-latest
timeout-minutes: 45
if: startsWith( github.ref, 'refs/tags/') || github.event.action == 'labeled' && github.event.label.name == 'actions/e2e-deploy'
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
env:
DATASET: fashion-mnist-784-euclidean.hdf5
e2e-deploy-sidecar:
name: 'E2E deploy test (Agent & Sidecar)'
name: "E2E deploy test (Agent & Sidecar)"
runs-on: ubuntu-latest
timeout-minutes: 45
if: startsWith( github.ref, 'refs/tags/') || github.event.action == 'labeled' && github.event.label.name == 'actions/e2e-deploy'
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:
env:
DATASET: fashion-mnist-784-euclidean.hdf5
slack-notification:
name: 'Slack notification'
name: "Slack notification"
needs:
- e2e-deploy-redis-mysql
- e2e-deploy-cassandra
Expand All @@ -401,7 +401,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: 8398a7/action-slack@v2
with:
author_name: 'E2E deploy test'
author_name: "E2E deploy test"
status: ${{ env.WORKFLOW_CONCLUSION }}
only_mention_fail: channel
env:
Expand Down
32 changes: 16 additions & 16 deletions k8s/external/minio/mb-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ spec:
template:
spec:
containers:
- name: mc
image: minio/mc
imagePullPolicy: Always
command:
- /bin/sh
- -c
- |
mc alias set minio ${ENDPOINT} ${MINIO_ACCESS_KEY} ${MINIO_SECRET_KEY} --api S3v4
mc mb minio/vald-minio
env:
- name: ENDPOINT
value: http://minio.default.svc.cluster.local:9000
- name: MINIO_ACCESS_KEY
value: ACCESSKEY
- name: MINIO_SECRET_KEY
value: SECRETKEY
- name: mc
image: minio/mc
imagePullPolicy: Always
command:
- /bin/sh
- -c
- |
mc alias set minio ${ENDPOINT} ${MINIO_ACCESS_KEY} ${MINIO_SECRET_KEY} --api S3v4
mc mb minio/vald-minio
env:
- name: ENDPOINT
value: http://minio.default.svc.cluster.local:9000
- name: MINIO_ACCESS_KEY
value: ACCESSKEY
- name: MINIO_SECRET_KEY
value: SECRETKEY
restartPolicy: Never

0 comments on commit ccac36c

Please sign in to comment.