Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small typo and improvement on the k8s guide #29213

Merged
merged 1 commit into from
Nov 15, 2022
Merged
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
6 changes: 3 additions & 3 deletions docs/src/main/asciidoc/deploying-to-kubernetes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ This would generate the following entry in the `container` section:
[source, yaml]
----
containers:
resources:
- resources:
limits:
cpu: 1000m
memory: 512Mi
Expand Down Expand Up @@ -667,7 +667,7 @@ After deploying these resources to Kubernetes, the Ingress resource will allow u

To customize the default `host` and `path` properties of the generated Ingress resources, you need to apply the following configuration:

[source]
[source, properties]
----
quarkus.kubernetes.ingress.expose=true
# To change the Ingress host. By default, it's empty.
Expand Down Expand Up @@ -703,7 +703,7 @@ spec:

Additionally, you can also add new Ingress rules by adding the following configuration:

[source]
[source, properties]
----
# Example to add a new rule
quarkus.kubernetes.ingress.rules.1.host=dev.svc.url
Expand Down