Skip to content

Commit

Permalink
Derp
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Sep 16, 2024
1 parent 51ab3d8 commit ca4c613
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ endif
# Set this value if you want to use an external registry
REPOSITORY ?= ""
IMAGE_TAG ?= ${REPOSITORY}quilkin:$(package_version)
PREV_IMAGE_TAG ?= us-docker.pkg.dev/quilkin/release/quilkin:0.9.0
PREV_IMAGE_TAG ?= us-docker.pkg.dev/quilkin/release/quilkin:0.8.0
MINIKUBE_PROFILE ?= quilkin
CARGO_TARGET_DIR ?= /workspace/target/build-image
common_rust_args := -v $(project_path):/workspace -w /workspace \
Expand Down
20 changes: 10 additions & 10 deletions crates/agones/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -600,16 +600,16 @@ pub fn quilkin_container(
value: Some("quilkin=trace".into()),
value_from: None,
}]),
// liveness_probe: Some(Probe {
// http_get: Some(HTTPGetAction {
// path: Some("/live".into()),
// port: IntOrString::Int(8000),
// ..Default::default()
// }),
// initial_delay_seconds: Some(3),
// period_seconds: Some(2),
// ..Default::default()
// }),
liveness_probe: Some(Probe {
http_get: Some(HTTPGetAction {
path: Some("/live".into()),
port: IntOrString::Int(8000),
..Default::default()
}),
initial_delay_seconds: Some(3),
period_seconds: Some(2),
..Default::default()
}),
readiness_probe: Some(Probe {
http_get: Some(HTTPGetAction {
path: Some("/ready".into()),
Expand Down

0 comments on commit ca4c613

Please sign in to comment.