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

hardcode proxy.replicated.com and replicated.app static IPs in troubleshoot output #1203

Merged
Merged
Changes from 1 commit
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
12 changes: 8 additions & 4 deletions pkg/preflights/host-preflight.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -323,15 +323,17 @@ spec:
- fail:
when: error
message: >
Error connecting to {{ .ReplicatedAPIURL }}.
Error connecting to {{ .ReplicatedAPIURL }}. The static IP addresses for
{{ .ReplicatedAPIURL }} are 162.159.133.41 and 162.159.134.41.
Ensure your firewall is properly configured, and use the --http-proxy, --https-proxy,
and --no-proxy flags if there is a proxy server.
- pass:
when: 'statusCode == 200'
message: 'Connected to {{ .ReplicatedAPIURL }}'
- fail:
message: >
Unexpected response from {{ .ReplicatedAPIURL }}.
Error connecting to {{ .ReplicatedAPIURL }}. The static IP addresses for
{{ .ReplicatedAPIURL }} are 162.159.133.41 and 162.159.134.41.
Ensure your firewall is properly configured, and use the --http-proxy, --https-proxy,
and --no-proxy flags if there is a proxy server.
- http:
Expand All @@ -342,15 +344,17 @@ spec:
- fail:
when: error
message: >
Error connecting to {{ .ProxyRegistryURL }}.
Error connecting to {{ .ProxyRegistryURL }}. The static IP addresses for
{{ .ProxyRegistryURL }} are 162.159.137.43 and 162.159.138.43.
Ensure your firewall is properly configured, and use the --http-proxy, --https-proxy,
and --no-proxy flags if there is a proxy server.
- pass:
when: 'statusCode == 401'
message: 'Connected to {{ .ProxyRegistryURL }}'
- fail:
message: >
Unexpected response from {{ .ProxyRegistryURL }}.
Unexpected response from {{ .ProxyRegistryURL }}. The static IP addresses for
{{ .ProxyRegistryURL }} are 162.159.137.43 and 162.159.138.43.
Ensure your firewall is properly configured, and use the --http-proxy, --https-proxy,
and --no-proxy flags if there is a proxy server.
- textAnalyze:
Expand Down
Loading