Skip to content

Commit

Permalink
Allow wider screen for complex content (eg. board variable tables)
Browse files Browse the repository at this point in the history
  • Loading branch information
andylwelch committed Nov 5, 2024
1 parent f579efd commit 94dc8b5
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 37 deletions.
6 changes: 6 additions & 0 deletions docs/assets/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ nav.md-tabs {
overflow: hidden;
}

@media screen and (min-width: 1220px) {
.md-grid {
max-width: 70rem;
}
}

/* .md-header, nav.md-tabs {
background-color: var(--md-primary-fg-color--dark);
color: white;
Expand Down
54 changes: 27 additions & 27 deletions docs/boards/connections/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,34 +28,34 @@ This service will:

Ensure you have updated the following variables as applicable in the `global.env` section of your `boards.yaml` file downloaded previously

| | Example | Description |
| -------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `sharedDrive.server` | `192.168.10.1` or `websphereNode1` | IP or Hostname of the server with the Connections shared drive mount |
| `sharedDrive.path` | `/opt/HCL/Connections/data/shared` or `/nfs/data/shared` | Path on the mount to the Connections shared drive |
| `sharedDrive.storage` | `10Gi` (optional) | The capacity of the PV and PVC |
| `sharedDrive.accessMode` | `ReadOnlyMany` (optional) | The accessMode of the PV and PVC |
| `sharedDrive.volumeMode` | `Filesystem` (optional) | The volumeMode of the PV and PVC |
| `sharedDrive.persistentVolumeReclaimPolicy` | `Retain` (optional) | The persistentVolumeReclaimPolicy of the PV and PVC |
| `sharedDrive.storageClassName` | `manual` (optional) | The storageClassName of the PV and PVC - useful for custom spec (e.g. hostPath) |
| | Example | Description |
| -------------------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `sharedDrive.server` | `192.168.10.1` or `websphereNode1` | IP or Hostname of the server with the Connections shared drive mount |
| `sharedDrive.path` | `/opt/HCL/Connections/data/shared` or `/nfs/data/shared` | Path on the mount to the Connections shared drive |
| `sharedDrive.storage` | `10Gi` (optional) | The capacity of the PV and PVC |
| `sharedDrive.accessMode` | `ReadOnlyMany` (optional) | The accessMode of the PV and PVC |
| `sharedDrive.volumeMode` | `Filesystem` (optional) | The volumeMode of the PV and PVC |
| `sharedDrive.persistentVolumeReclaimPolicy` | `Retain` (optional) | The persistentVolumeReclaimPolicy of the PV and PVC |
| `sharedDrive.storageClassName` | `manual` (optional) | The storageClassName of the PV and PVC - useful for custom spec (e.g. hostPath) |
| `sharedDrive.spec` | [Example](../cp/migration/index.md#custom-persistent-volume) | Using a fully custom spec - e.g. FlexVolume or hostPath |
| `env.CONNECTIONS_URL` | `httsp://connections.example.com` | URL of your Connections environment |
| `env.FILE_PATH_ACTIVITIES_CONTENT_STORE` | `/data/activities/content` | Path of the Activities content store relative to the Connections shared drive.</br>Must start with /data as the Connections shared drive is mounted at /data</br>Ensure you set the IP and path for the NFS volume mount. |
| `env.API_GATEWAY` | `https://[CONNECTIONS_URL]/api-boards` | URL of the Boards API.</br>Used by files attached to a board. URL. |
| `env.CONNECTIONS_ACTIVITIES_ADMIN_USERNAME` | `connectionsadmin` | Credentials for user with `admin` role </br>on the Activities application.</br>See `ISC` => `Applications` => </br>`Activities` => </br>`Security role to user mapping` |
| `env.CONNECTIONS_ACTIVITIES_ADMIN_PASSWORD` | `adminpassword` | Password for the Activities administrator |
| `env.CONNECTIONS_DB_TYPE` | `db2` or `mssql` or `oracle` | SQL database type hosting Activities. |
| `env.CONNECTIONS_DB_HOST` | `dbserver.company.com` | SQL Server hostname |
| `env.CONNECTIONS_DB_PORT` | `50000` or `1433` or `1531` | SQL Server connection port |
| `env.CONNECTIONS_DB_USER` | `dbuser` | SQL Server user name |
| `env.CONNECTIONS_DB_PASSWORD` | `dbpassword` | SQL Server user password |
| `env.CONNECTIONS_DB_SID` | `DATABASE` | SQL Server SID</br>**Note: applicable to Oracle** |
| `env.CONNECTIONS_DB_DOMAIN` | `domain` | SQL Server connection string</br>**Note: applicable to Microsoft SQL** |
| `env.CONNECTIONS_DB_CONNECT_STRING` | `HOSTNAME=<host>;PROTOCOL=...` or `<host>:<port>/<sid>` | SQL Server connection string</br>**Note: Optional</br>Default is built from other values.</br>Only applicable to DB2 and Oracle** |
| `env.PROCESSING_PAGE_SIZE` | `10` (default) | Number of Activities to process </br>simultaneously. Value must not exceed </br>the connection pool size supported </br>by the SQL database |
| `env.PROCESSING_LOG_EVERY` | `50` (default) | The migration process logs every 50 Activities completed |
| `env.IMMEDIATELY_PROCESS_ALL` | `false` (default) | Process ALL Activities on service startup. |
| `env.COMPLETE_ACTIVITY_AFTER_MIGRATED` | `false` | Mark the old Activity data as complete |
| `env.CREATE_LINK_IN_ACTIVITY_AFTER_MIGRATED` | `false` | Create link to new Board in old Activity |
| `env.CONNECTIONS_URL` | `httsp://connections.example.com` | URL of your Connections environment |
| `env.FILE_PATH_ACTIVITIES_CONTENT_STORE` | `/data/activities/content` | Path of the Activities content store relative to the Connections shared drive.</br>Must start with /data as the Connections shared drive is mounted at /data</br>Ensure you set the IP and path for the NFS volume mount. |
| `env.API_GATEWAY` | `https://[CONNECTIONS_URL]/api-boards` | URL of the Boards API.</br>Used by files attached to a board. URL. |
| `env.CONNECTIONS_ACTIVITIES_ADMIN_USERNAME` | `connectionsadmin` | Credentials for user with `admin` role </br>on the Activities application.</br>See `ISC` => `Applications` => </br>`Activities` => </br>`Security role to user mapping` |
| `env.CONNECTIONS_ACTIVITIES_ADMIN_PASSWORD` | `adminpassword` | Password for the Activities administrator |
| `env.CONNECTIONS_DB_TYPE` | `db2` or `mssql` or `oracle` | SQL database type hosting Activities. |
| `env.CONNECTIONS_DB_HOST` | `dbserver.company.com` | SQL Server hostname |
| `env.CONNECTIONS_DB_PORT` | `50000` or `1433` or `1531` | SQL Server connection port |
| `env.CONNECTIONS_DB_USER` | `dbuser` | SQL Server user name |
| `env.CONNECTIONS_DB_PASSWORD` | `dbpassword` | SQL Server user password |
| `env.CONNECTIONS_DB_SID` | `DATABASE` | SQL Server SID</br>**Note: applicable to Oracle** |
| `env.CONNECTIONS_DB_DOMAIN` | `domain` | SQL Server connection string</br>**Note: applicable to Microsoft SQL** |
| `env.CONNECTIONS_DB_CONNECT_STRING` | `HOSTNAME=<host>;PROTOCOL=...`</br>or `<host>:<port>/<sid>` | SQL Server connection string</br>**Note: Optional</br>Default is built from other values.</br>Only applicable to DB2 and Oracle** |
| `env.PROCESSING_PAGE_SIZE` | `10` (default) | Number of Activities to process </br>simultaneously. Value must not exceed </br>the connection pool size supported </br>by the SQL database |
| `env.PROCESSING_LOG_EVERY` | `50` (default) | The migration process logs every 50 Activities completed |
| `env.IMMEDIATELY_PROCESS_ALL` | `false` (default) | Process ALL Activities on service startup. |
| `env.COMPLETE_ACTIVITY_AFTER_MIGRATED` | `false` | Mark the old Activity data as complete |
| `env.CREATE_LINK_IN_ACTIVITY_AFTER_MIGRATED` | `false` | Create link to new Board in old Activity |

Example:

Expand Down
Loading

0 comments on commit 94dc8b5

Please sign in to comment.