peridot/peridot/ui/deploy.jsonnet

26 lines
491 B
Plaintext
Raw Normal View History

local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
2022-07-07 20:11:50 +00:00
local kubernetes = import 'ci/kubernetes.jsonnet';
local frontend = import 'ci/frontend.jsonnet';
local tag = std.extVar('tag');
RESFDEPLOY.new({
2022-07-07 20:11:50 +00:00
name: 'peridot-frontend',
backend: false,
migrate: false,
image: kubernetes.tag($.name),
tag: tag,
env: frontend.server_env,
ports: [
{
name: 'http',
containerPort: 8086,
protocol: 'TCP',
expose: true,
},
],
health: {
port: 8086,
},
})