29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
Thank you for installing {{ .Chart.Name }}.
|
|
|
|
Your release is named {{ .Release.Name }}.
|
|
|
|
To get started with your service, you can:
|
|
|
|
1. Check the status of your deployment:
|
|
helm status {{ .Release.Name }}
|
|
|
|
2. Get the service URL:
|
|
kubectl get svc {{ include "payouts.fullname" . }}
|
|
|
|
3. Access your service logs:
|
|
kubectl logs -l app={{ include "payouts.fullname" . }}
|
|
|
|
4. To view the configuration, check the ConfigMap:
|
|
kubectl get configmap {{ include "payouts.fullname" . }}-config -o yaml
|
|
|
|
5. To update your secrets (YooKassa API keys), create a secret with:
|
|
kubectl create secret generic {{ include "payouts.fullname" . }}-secrets \\
|
|
--from-literal=yookassa-base-key='YOUR_BASE_KEY' \\
|
|
--from-literal=yookassa-base-secret='YOUR_BASE_SECRET' \\
|
|
--from-literal=yookassa-payment-key='YOUR_PAYMENT_KEY' \\
|
|
--from-literal=yookassa-payment-secret='YOUR_PAYMENT_SECRET'
|
|
|
|
6. To access your service via ingress (if enabled), check the ingress rules:
|
|
kubectl get ingress {{ include "payouts.fullname" . }}
|
|
|
|
For more information, please refer to the documentation. |