Skip to content

Pelican containers need to be told their FQDN is via Server.Hostname #262

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

Merged
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
9 changes: 7 additions & 2 deletions docs/data/osdf/install-cache-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,20 @@ This document will use `/etc/osdf-cache/config.yaml` as the name of the configur
Create `/etc/osdf-cache/config.yaml` with the following contents:
```file
Federation:
DiscoveryUrl: "https://osg-htc.org"
DiscoveryUrl: "osg-htc.org"

Cache:
Port: 8443
# XRootD:
# Sitename: <RESOURCE NAME REGISTERED WITH OSG>

Server:
Hostname: "https://<FQDN>"
```
You will uncomment and fill in the value for `XRootD.Sitename` in a later step, after registration is complete.

Replacing `<FQDN>` with the externally-accessible FQDN of your cache service
(this should match one of the SANs in your host certificate).
You will also uncomment and fill in the value for `XRootD.Sitename` in a later step, after registration is complete.

Preparing for Initial Startup
-----------------------------
Expand Down
7 changes: 6 additions & 1 deletion docs/data/osdf/install-origin-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,13 @@ Create `/etc/osdf-origin/config.yaml` with the following contents:
Origin:
# XRootD:
# Sitename: <RESOURCE NAME REGISTERED WITH OSG>

Server:
Hostname: "<FQDN>"
```
You will uncomment and fill in the value for `XRootD.Sitename` in a later step, after registration is complete.
Replacing `<FQDN>` with the externally-accessible FQDN of your cache service
(this should match one of the SANs in your host certificate).
You will also uncomment and fill in the value for `XRootD.Sitename` in a later step, after registration is complete.

You must tell Pelican the data to export to the federation.
An origin may export one or more directory trees, or one or more S3 buckets -- follow one of the sections below.
Expand Down