Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
Cleaning up documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
g8sman committed May 17, 2019
1 parent 602bc04 commit 82e4ff1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -93,7 +93,7 @@ After the launchsas.sh command is completed, use `docker ps` to list the running

### Sign In to SAS Studio

Go to `http://<myhostname>:8081`, and then sign in with the sasdemo user ID and the sasdemo password to start using SAS Studio!
Go to `http://<myhostname>:8080`, and then sign in with the sasdemo user ID and the sasdemo password to start using SAS Studio!

<img src="docs/sas-logon-screen-sasdemo.png" alt="SAS Logon Screen" style="width: 80%; height: 80%; object-fit: contain;">

Expand Down
6 changes: 5 additions & 1 deletion docs/usage.txt
Expand Up @@ -42,6 +42,10 @@ Single Container
For more information about using a mirror repository, see the Mirror Manager guide at
https://support.sas.com/en/documentation/install-center/viya/deployment-tools/34/mirror-manager.html

--skip-mirror-url-validation
Skips validation of the URL specified in the --mirror-url argument.
Default: false


Multiple Containers
-------------------
Expand Down Expand Up @@ -116,7 +120,7 @@ Multiple Containers
Default: false

--skip-mirror-url-validation
Skips validating the mirror URL from the --mirror-url flag.
Skips validation of the URL specified in the --mirror-url argument.
Default: false

--skip-docker-url-validation
Expand Down
3 changes: 2 additions & 1 deletion docs/wiki/Build-and-Run-SAS-Viya-Single-Container.md
Expand Up @@ -310,7 +310,8 @@ sed -i 's|@REPLACE_ME_WITH_TAG@|<tag>|' ${PWD}/run/launchsas.sh
cd run
```

**Note:** Replace _<tag>_ with the value that you want to use.
**Note:** Replace _\<tag\>_ with the value that you want to use.
**Note:** If you used the auth-sssd addon or customised the user in the auth-demo addon, make sure to update the CASENV_ADMIN_USER to contain a valid username.

When the script is run, it will create several directories for you. These are set up either to cause data to persist or to help with [configuration](#configuration).

Expand Down
4 changes: 2 additions & 2 deletions docs/wiki/Validating.md
Expand Up @@ -75,7 +75,7 @@ If the image is not running, here are several recovery actions that you can perf

To verify that the sas-programming process is running in Kubernetes, run the following command:

`kubectl get -f sas-programming.yml`
`kubectl get -f run/programming.yml`

Here are typical results:

Expand All @@ -87,7 +87,7 @@ NAME READY UP-TO-DATE AVAILABLE AGE
sas-programming 1/1 1 1 11d
```

**Tip:** Run the command from the directory where the sas-programming.yml file is located. For a programming-only deployment, the Kubernetes manifests are located at $PWD/builds/multiple/manifests/ and for a full deployment, the manifests are located at $PWD/builds/full/manifests/.
**Tip:** Run the command from the directory where the programming.yml file is located. For a single image programming-only deployment, the Kubernetes manifests are located at $PWD/run/programming.yml. For a multiple image programming-only deployment, the manifests are lodated at $PWD/builds/multiple/manifests/kubernetes and for a full deployment, the manifests are located at $PWD/builds/full/manifests/kubernetes.

If you do not get the results that you expect, run the following command to enable the DEBUG option to provide more information:

Expand Down
3 changes: 3 additions & 0 deletions order.go
Expand Up @@ -1682,6 +1682,9 @@ cp samples/viya-single-container/example_launchsas.sh run/launchsas.sh
cd run
sed -i 's|@REPLACE_ME_WITH_TAG@|%s|' launchsas.sh
./launchsas.sh
Note: If you used the auth-sssd addon or customised the user in the auth-demo addon,
make sure to update the CASENV_ADMIN_USER in run/launchsas.sh to contain a valid username.
`, order.TagOverride)
order.WriteLog(true, nextStepInstructions)

Expand Down
1 change: 1 addition & 0 deletions samples/viya-single-container/example_launchsas.sh
Expand Up @@ -17,6 +17,7 @@ run_args="
--hostname $SAS_CONTAINER_NAME
--env RUN_MODE=developer
--env CASENV_ADMIN_USER=sasdemo
--env CASENV_CAS_VIRTUAL_PORT=${SAS_HTTPS_PORT}
--env CASENV_CAS_VIRTUAL_HOST=$(hostname -f)
--env CASENV_CAS_VIRTUAL_PORT=${SAS_HTTP_PORT}
--env CASENV_CASDATADIR=/cas/data
Expand Down

0 comments on commit 82e4ff1

Please sign in to comment.