UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Updated documentation per task request

Merged Jordan Olachea requested to merge 686-docs into master
All threads resolved!
Files
2
@@ -169,3 +169,28 @@ Under Settings → Repository → Default Branch, ensure that main is selected.
1. After the merge create a git tag following the charter convention of {UpstreamChartVersion}-bb.{BigBangVersion}. The tag should exactly match the chart version in the Chart.yaml.
example: 1.2.3-bb.0
### Private registry secret creation
1. In some instances you may wish to manually create a private-registry secret in the namespace or during a helm deployment. There are a couple of ways to do this:
First is to add the secret manually using the shell:
```shell
kubectl create secret docker-registry private-registry --docker-server="https://registry1.dso.mil" --docker-username='Username' --docker-password="CLI secret" --docker-email=<your-email> --namespace=<package-namespace>
```
The second is to create a yaml file containing the secret and apply it during a helm install. In this example the file name is "reg-creds.yaml"
create the file with the secret contents:
```yaml
registryCredentials:
registry: registry1.dso.mil
username: ""
password: ""
email: ""
```
and then include a reference to your file during your helm install command by adding
```shell
-f reg-creds.yaml
```
\ No newline at end of file
Loading