Step 4

ARTIFACTORY: Deploying Artifactory Helm charts with Nginx-ingress

AuthorFullName__c
Prajyot Pawase, Raphael Zaafrani
articleNumber
000005348
ft:sourceType
Salesforce
FirstPublishedDate
2022-07-26T14:08:27Z
lastModifiedDate
2024-04-03T11:00:03Z
VersionNumber
6
Create the secrets for the Nginx certificates using the below command & under the namespace where Artifactory would be deployed.

command:
$ kubectl create secret tls <secret name>--cert=/path to/tls.pem --key=/path to/tls.key --namespace artifactory

Example:


$ kubectl create secret tls nginx-tls --cert=/Users/admin/Documents/kubernetes/certs/tls.crt --key=/Users/admin/Documents/kubernetes/certs/tls.key --namespace artifactory