...
Code Block |
---|
helm install ac5tmt adeptia/ --timeout 10m --debug -n ac5tmt |
While installing you can see the status and watchlist (Needs to update your own namespace) This needs to be opened in a separate command prompt and executed.
Run the below command to see the live status of the installation:
Code Block |
---|
kubectl get pods -n ac5tmt -w |
Run the below command to get pods details :
Code Block |
---|
kubectl get pods -n ac5tmt |
Refer to the Screenshot below :
...
Please make sure the service status is RUNNING for all the pods.
Setting up Ingress
Ingress exposes HTTP and HTTPS routes from outside the cluster to services within the cluster.
Follow the given steps to Deploy [ingress-nginx]:
Open ingress folder
...
Open the ingress yaml file and change
namespace: ac5tmt
secretName: acexpresssecret
secretName: acexpresssecret
Refer to the below Screenshot:
...
Run CMD from the ingress folder path and apply secret and ingress yaml
Code Block |
---|
Expand |
Below is the explanation of the above command: 1. |
While installing you can see the status and watchlist (Needs to update your own namespace) This needs to be opened in a separate command prompt and executed.
Run the below command to see the live status of the installation:
Code Block |
---|
kubectl get pods -n ac5tmt -w |
Run the below command to get pods details :
Code Block |
---|
kubectl get pods -n ac5tmt |
Refer to the Screenshot below :
...
Please make sure the service status is RUNNING for all the pods.
...
Setting up Ingress
Ingress exposes HTTP and HTTPS routes from outside the cluster to services within the cluster.
Follow the given steps to Deploy [ingress-nginx]:
Open ingress folder
...
Open the ingress yaml file and change
namespace: ac5tmt
secretName: acexpresssecret
secretName: acexpresssecret
Refer to the below Screenshot:
...
Run CMD from the ingress folder path and apply secret and ingress yaml
Code Block |
---|
kubectl create secret tls acexpresssecret --key="tls.key" --cert="tls.crt" --namespace ac5tmt |
Expand | ||
---|---|---|
| ||
1. kubectl create secret tls
2. acexpresssecret
3. --key="tls.key"
4. --cert="tls.crt"
5. --namespace ac5tmt
|
This will create a secret in the namespace
...
Go to services, Ingress, and get the external IP
...
Bind the IP with DNS ac4tmtac5tmt.adeptia.com
Example: https://acexpress-ist-poc.adeptia.com/Portal2/#/home
...