Skip to content

Commit e6be134

Browse files
author
Steve Salas
committed
Avoid using .lic file extension for license
1 parent 363557f commit e6be134

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

codedx/docs/codedx-licensing.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,22 @@ By default, Code Dx will be installed without a license. When you first navigate
44

55
## Using a File
66

7-
If you have a Code Dx license file that you want to use, copy it to your current working directory and install Code Dx using helm:
7+
If you have a Code Dx license file that you want to use, copy it to your current working directory specifying a .txt file extension, and install Code Dx using helm:
8+
9+
> Note: The Code Dx chart will ignore a license file with a .lic file extension.
810
911
```yaml
1012
# values.yaml
1113
license:
12-
file: my-codedx-license.lic
14+
file: my-codedx-license.txt
1315
```
1416
1517
```bash
1618
# Direct call
17-
helm install {my-codedx} codedx/codedx --set license.file="my-codedx-license.lic"
19+
helm install {my-codedx} codedx/codedx --set license.file="my-codedx-license.txt"
1820
```
1921

20-
Code Dx will create a Secret containing the contents of `my-codedx-license.lic`, which is mounted as a file and read by Code Dx during installation.
22+
Code Dx will create a Secret containing the contents of `my-codedx-license.txt`, which is mounted as a file and read by Code Dx during installation.
2123

2224
## Using a Pre-Existing Secret
2325

0 commit comments

Comments
 (0)