Skip to content

Commit

Permalink
Changing ports
Browse files Browse the repository at this point in the history
  • Loading branch information
nniehoff committed Sep 13, 2021
1 parent bf8f14a commit 063fe3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/nautobot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,12 @@ Nautobot is a Network Source of Truth and Network Automation Platform.
| service.annotations | object | `{}` | |
| service.clusterIP | string | `nil` | |
| service.externalTrafficPolicy | string | `"Cluster"` | |
| service.httpsPort | int | `8443` | |
| service.httpsPort | int | `443` | |
| service.loadBalancerIP | string | `nil` | |
| service.loadBalancerSourceRanges | list | `[]` | |
| service.nodePorts.http | string | `nil` | |
| service.nodePorts.https | string | `nil` | |
| service.port | int | `8080` | |
| service.port | int | `80` | |
| service.type | string | `"ClusterIP"` | |
| serviceAccount.create | bool | `true` | |
| serviceAccount.name | string | `""` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/nautobot/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ spec:
{{- end }}
ports:
- protocol: "TCP"
port: 443
port: {{ .Values.service.httpsPort }}
targetPort: "https"
name: "https"
- protocol: "TCP"
port: 80
port: {{ .Values.service.port }}
targetPort: "http"
name: "http"
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
Expand Down
4 changes: 2 additions & 2 deletions charts/nautobot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ service:
type: "ClusterIP"
## @param service.port nautobot service HTTP port
##
port: 8080
port: 80
## @param service.httpsPort nautobot service HTTPS port
##
httpsPort: 8443
httpsPort: 443
## Node ports to expose
## @param service.nodePorts.http Node port for HTTP
## @param service.nodePorts.https Node port for HTTPS
Expand Down

0 comments on commit 063fe3e

Please sign in to comment.