Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ When no SSH flags are provided, no user account is configured in the VMs.

## OpenShift Deployment

virtwork can run as a pod on the cluster using the provided Kustomize manifests in `deploy/`. The container image is available at `quay.io/opdev/virtwork:latest`.
virtwork can run as a pod on the cluster using the provided Kustomize manifests in `deploy/`. The deployment manifest uses a semantic version tag (e.g., `v0.0.1`) to pin the image for reproducible deployments. Update the version tag in `deploy/deployment.yaml` when upgrading. For development or testing, you can use `quay.io/opdev/virtwork:latest`.

### Deploy with Kustomize

Expand Down
4 changes: 2 additions & 2 deletions deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ spec:
type: RuntimeDefault
containers:
- name: virtwork
image: quay.io/opdev/virtwork:latest
imagePullPolicy: Always
image: quay.io/opdev/virtwork:v0.0.1
imagePullPolicy: IfNotPresent
envFrom:
- configMapRef:
name: virtwork-config
Expand Down
Loading