-
Notifications
You must be signed in to change notification settings - Fork 641
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change: ingress example within openvasd
Changes ingress example within values of openvasd to be traefik for a single http instance.
- Loading branch information
1 parent
0899d3f
commit 7975972
Showing
4 changed files
with
63 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ingress: | ||
enabled: true | ||
annotations: | ||
kubernetes.io/ingress.class: "traefik" | ||
className: "traefik" | ||
hosts: | ||
# Captures everything of / delegates it to openvasd although this is not feasible | ||
# on deployments that contain multiple http services our current deployment model | ||
# sees a sensor as an own machine. | ||
# Currently it is configures with http instead of https in mind | ||
# Do not use it in production environments. | ||
- paths: | ||
- path: / | ||
pathType: ImplementationSpecific | ||
backend: | ||
service: | ||
name: openvasd | ||
port: | ||
number: 80 | ||
openvasd: | ||
tls: | ||
certificates: | ||
deploy_server: false | ||
deploy_client: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters