Enable TLS auth on py client #143
Workflow file for this run
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 container image build and deployment | |
on: | |
pull_request: | |
paths-ignore: | |
- 'LICENSE*' | |
- '**.gitignore' | |
- '**.md' | |
- '**.txt' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/dependabot.yml' | |
- 'docs/**' | |
- 'clients/python/**' | |
env: | |
IMG_ORG: kubeflow | |
IMG_REPO: model-registry | |
PUSH_IMAGE: false | |
BRANCH: ${{ github.base_ref }} | |
jobs: | |
build-and-test-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate Tag | |
shell: bash | |
id: tags | |
run: | | |
commit_sha=${{ github.event.after }} | |
tag=main-${commit_sha:0:7} | |
echo "tag=${tag}" >> $GITHUB_OUTPUT | |
- name: Build Image | |
shell: bash | |
env: | |
VERSION: ${{ steps.tags.outputs.tag }} | |
run: ./scripts/build_deploy.sh | |
- name: Start Kind Cluster | |
uses: helm/[email protected] | |
with: | |
node_image: "kindest/node:v1.27.11" | |
- name: Load Local Registry Test Image | |
env: | |
IMG: "${{ env.IMG_ORG }}/${{ env.IMG_REPO }}:${{ steps.tags.outputs.tag }}" | |
run: | | |
kind load docker-image -n chart-testing ${IMG} | |
- name: Create Test Registry | |
env: | |
IMG: "${{ env.IMG_ORG }}/${{ env.IMG_REPO }}:${{ steps.tags.outputs.tag }}" | |
run: | | |
echo "Download kustomize 5.2.1" | |
mkdir $GITHUB_WORKSPACE/kustomize | |
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -s "5.2.1" "$GITHUB_WORKSPACE/kustomize" | |
PATH=$GITHUB_WORKSPACE/kustomize:$PATH | |
echo "Display Kustomize version" | |
kustomize version | |
echo "Deploying Model Registry using Manifests; branch ${BRANCH}" | |
kubectl create namespace kubeflow | |
cd manifests/kustomize/overlays/db | |
kustomize edit set image kubeflow/model-registry:latest $IMG | |
kustomize build | kubectl apply -f - | |
- name: Wait for Test Registry Deployment | |
run: | | |
kubectl wait --for=condition=available -n kubeflow deployment/model-registry-db --timeout=5m | |
kubectl wait --for=condition=available -n kubeflow deployment/model-registry-deployment --timeout=5m | |
kubectl logs -n kubeflow deployment/model-registry-deployment |