Kubernetes-exec
kubernetes-exec
run and kubernetes-exec
test actions are used to execute a command in an already deployed Kubernetes Pod and wait for it to complete. These actions are not cached. They can be used with deploys running in sync mode for rapid testing and development. These actions should depend on the the deploy action that creates the kubernetes workloads they run in.Here's a run action from the vote-helm example that initialazes the database by running a command in the already deployed kuberneted workload.
kind: Run
name: db-init
type: kubernetes-exec
dependencies: [deploy.db]
spec:
resource:
kind: "StatefulSet"
name: "postgres"
command:
[
"/bin/sh",
"-c",
"PGPASSWORD=postgres psql -w -U postgres --host=postgres --port=5432 -d postgres -c 'CREATE TABLE IF NOT EXISTS votes (id VARCHAR(255) NOT NULL UNIQUE, vote VARCHAR(255) NOT NULL, created_at timestamp default NULL)'",
]
Last modified 16d ago