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

changing name to hide until deletion #382

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions ci/smoke-tests-login.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if __name__ == "__main__":
session = requests.Session()

logs = session.get('https://logs-deprecated.{}'.format(os.environ['CF_SYSTEM_DOMAIN']))
logs = session.get('https://logs-deprecated-waiting-for-delete.{}'.format(os.environ['CF_SYSTEM_DOMAIN']))
print(logs.url, logs.status_code)
assert logs.url == 'https://login.{}/login'.format(os.environ['CF_SYSTEM_DOMAIN'])
assert logs.status_code == 200
Expand All @@ -23,5 +23,5 @@
},
)
print(login.url, login.status_code)
assert login.url == 'https://logs-deprecated.{}/app/home'.format(os.environ['CF_SYSTEM_DOMAIN'])
assert login.url == 'https://logs-deprecated-waiting-for-delete.{}/app/home'.format(os.environ['CF_SYSTEM_DOMAIN'])
assert login.status_code == 200
2 changes: 1 addition & 1 deletion logsearch-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ instance_groups:
route_registrar:
routes:
- name: logsearch
uris: [logs-deprecated.dev.us-gov-west-1.aws-us-gov.cloud.gov]
uris: [logs-deprecated-waiting-for-delete.dev.us-gov-west-1.aws-us-gov.cloud.gov]
- name: bosh-dns-aliases
release: bosh-dns-aliases
properties:
Expand Down
2 changes: 1 addition & 1 deletion logsearch-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ instance_groups:
- LogMessage
- ContainerMetric
system_domain: (( grab $CF_SYSTEM_DOMAIN ))
logs_hostname: logs-deprecated
logs_hostname: logs-deprecated-waiting-for-delete
user: (( grab $CF_USERNAME ))
password: (( grab $CF_PASSWORD ))
kibana_objects:
Expand Down
2 changes: 1 addition & 1 deletion logsearch-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ instance_groups:
route_registrar:
routes:
- name: logsearch
uris: [logs-deprecated.fr.cloud.gov]
uris: [logs-deprecated-waiting-for-delete.fr.cloud.gov]
- name: bosh-dns-aliases
release: bosh-dns-aliases
properties:
Expand Down
2 changes: 1 addition & 1 deletion logsearch-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ instance_groups:
route_registrar:
routes:
- name: logsearch
uris: [logs-deprecated.fr-stage.cloud.gov]
uris: [logs-deprecated-waiting-for-delete.fr-stage.cloud.gov]
- name: bosh-dns-aliases
release: bosh-dns-aliases
properties:
Expand Down
Loading