Skip to content

Commit

Permalink
fix(k8s): fix casing in ingress spec
Browse files Browse the repository at this point in the history
This was causing problems e.g. on newer versions of Minikube.
  • Loading branch information
thsig committed Nov 5, 2021
1 parent 2927fa5 commit 827ba40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/kubernetes/container/ingress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function createIngressResources(
paths: [
{
path: ingress.path,
pathType: "prefix",
pathType: "Prefix",
backend: {
service: {
name: service.name,
Expand Down

0 comments on commit 827ba40

Please sign in to comment.