mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-10 16:31:24 +00:00
25 lines
488 B
Plaintext
25 lines
488 B
Plaintext
|
local bycdeploy = import 'ci/bycdeploy.jsonnet';
|
||
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||
|
local frontend = import 'ci/frontend.jsonnet';
|
||
|
|
||
|
local tag = std.extVar('tag');
|
||
|
|
||
|
bycdeploy.new({
|
||
|
name: 'obsidian-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,
|
||
|
},
|
||
|
})
|