Skip to content

Commit 5a1fe09

Browse files
committed
fix lint 🤞
1 parent 3a6dc45 commit 5a1fe09

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

‎apps/netbox/helm/values.yaml‎

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ superuser:
1717
# server. NetBox will not permit write access to the server via any other
1818
# hostnames. The first FQDN in the list will be treated as the preferred name.
1919
allowedHosts:
20-
- "*"
20+
- "*"
2121

2222
# Include Pod IP in list of allowed hosts by providing it as the 'POD_IP' envvar
2323
# at runtime, which is then used in the configuration.py.
@@ -42,20 +42,20 @@ authPasswordValidators: []
4242

4343
# URL schemes that are allowed within links in NetBox
4444
allowedUrlSchemes:
45-
- file
46-
- ftp
47-
- ftps
48-
- http
49-
- https
50-
- irc
51-
- mailto
52-
- sftp
53-
- ssh
54-
- tel
55-
- telnet
56-
- tftp
57-
- vnc
58-
- xmpp
45+
- file
46+
- ftp
47+
- ftps
48+
- http
49+
- https
50+
- irc
51+
- mailto
52+
- sftp
53+
- ssh
54+
- tel
55+
- telnet
56+
- tftp
57+
- vnc
58+
- xmpp
5959

6060
banner:
6161
# Optionally display a persistent banner at the top and/or bottom of every
@@ -89,7 +89,8 @@ defaultUserPreferences: {}
8989
# more information, see https://github.com/ottoyiu/django-cors-headers
9090
cors:
9191
originAllowAll: false
92-
originWhitelist: [ "https://netbox.sandbox.cedille.club", "https://netbox.etsmtl.club" ]
92+
originWhitelist:
93+
["https://netbox.sandbox.cedille.club", "https://netbox.etsmtl.club"]
9394
originRegexWhitelist: []
9495
# - '^(https?://)?(\w+\.)?example\.com$'
9596

@@ -102,7 +103,8 @@ csrf:
102103
# Defines a list of trusted origins for unsafe (e.g. POST) requests. This is
103104
# a pass-through to Django's CSRF_TRUSTED_ORIGINS setting. Note that each
104105
# host listed must specify a scheme (e.g. http:// or `https://).
105-
trustedOrigins: [ "https://netbox.sandbox.cedille.club", "https://netbox.etsmtl.club" ]
106+
trustedOrigins:
107+
["https://netbox.sandbox.cedille.club", "https://netbox.etsmtl.club"]
106108

107109
# Enable the GraphQL API
108110
graphQlEnabled: false
@@ -125,7 +127,7 @@ rackElevationDefaultUnitWidth: 220
125127
remoteAuth:
126128
enabled: false
127129
backends:
128-
- netbox.authentication.RemoteUserBackend
130+
- netbox.authentication.RemoteUserBackend
129131
header: HTTP_REMOTE_USER
130132
userFirstName: HTTP_REMOTE_USER_FIRST_NAME
131133
userLastName: HTTP_REMOTE_USER_LAST_NAME

‎apps/netbox/kustomization.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ helmCharts:
1111
repo: "oci://ghcr.io/netbox-community/netbox-chart/netbox"
1212
releaseName: "netbox"
1313
namespace: netbox
14-
valuesFile: "helm/values.yaml"
14+
valuesFile: "helm/values.yaml"

‎apps/netbox/resources/httpproxy.yaml‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ spec:
88
tls:
99
secretName: tls-delegation/sandbox-tls
1010
routes:
11-
- conditions:
12-
- prefix: /
13-
services:
14-
- name: netbox
15-
port: 80
16-
timeoutPolicy:
17-
idle: 600s
18-
response: 600s
11+
- conditions:
12+
- prefix: /
13+
services:
14+
- name: netbox
15+
port: 80
16+
timeoutPolicy:
17+
idle: 600s
18+
response: 600s

0 commit comments

Comments
 (0)