TerminationGracePeriodSeconds 시간이 너무 길어 pod가 오랜기간 terminate 되지 않는 문제가… #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Deploy With Minifest | |
# This workflow is triggered on any golang code, makefile, workflow changes to repository. | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
deploy-by-manifest: | |
name: Test Deploy by Manifest | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu18.04] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup KinD Cluster | |
uses: engineerd/[email protected] | |
with: | |
version: "v0.11.1" | |
- name: Deploy by manifest | |
run: | | |
make deploy-by-manifest | |
- name: Test Webhook | |
run : | | |
set -ex | |
kubectl create -f ./config/samples/milvus_minimum.yaml | |
kubectl delete -f ./config/samples/milvus_minimum.yaml | |
kubectl create -f ./config/samples/milvus_cluster_minimum.yaml | |
kubectl delete -f ./config/samples/milvus_cluster_minimum.yaml |