mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
26 lines
492 B
Plaintext
26 lines
492 B
Plaintext
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
|
local frontend = import 'ci/frontend.jsonnet';
|
|
|
|
local tag = std.extVar('tag');
|
|
|
|
resfdeploy.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,
|
|
},
|
|
})
|