5 lines
139 B
Bash
5 lines
139 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
microk8s kubectl create secret generic elasticsearch-secret -n efk \
|
||
|
--from-literal=elastic_password='your_secure_password'
|