diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..6f55f98 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,9 @@ +{ + "MD053": false, + "MD034": false, + "MD013": false, + "MD029": false, + "MD041": false, + "MD033": false, + "MD004": false + } diff --git a/.markdownlintignore b/.markdownlintignore new file mode 100644 index 0000000..c3034fe --- /dev/null +++ b/.markdownlintignore @@ -0,0 +1,3 @@ +LICENSE +CHANGELOG.md +.github/*.md diff --git a/README.md b/README.md index 09ace6e..d530aa7 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ make docker-latest #### Push New Remote Image -Pushes are automated by [the GitHub workflow](./.github/workflows/ci.yaml) on push or pull request to `main`. +Pushes are automated by [the GitHub workflow](./.github/workflows/build-and-push-image.yaml) on push or pull request to `main`. Below are manual steps for pushing a new image to a registry like GHCR using Docker. The comments above lines with environment variables are example values. diff --git a/manifests/deploy.yaml b/manifests/deploy.yaml index fb9b623..c7c32ea 100644 --- a/manifests/deploy.yaml +++ b/manifests/deploy.yaml @@ -4,6 +4,7 @@ metadata: name: gpu-support-test namespace: leapfrogai spec: + runtimeClassName: nvidia selector: matchLabels: app: gpu-support-test diff --git a/zarf-config.yaml b/zarf-config.yaml index d992100..94c530e 100644 --- a/zarf-config.yaml +++ b/zarf-config.yaml @@ -2,10 +2,10 @@ package: create: set: image_repository: "ghcr.io/justinthelaw/gpu-support-test" - image_version: 0.1.1 + image_version: 0.2.0 name: gpu-support-test max_package_size: "1000000000" deploy: set: image_repository: "ghcr.io/justinthelaw/gpu-support-test" - image_version: 0.1.1 \ No newline at end of file + image_version: 0.2.0 \ No newline at end of file