mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-18 08:58:30 +00:00
Fix references to resfdeploy
This commit is contained in:
parent
d2034e7c44
commit
bd03ada0d5
@ -1,10 +1,10 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local temporal = import 'ci/temporal.jsonnet';
|
local temporal = import 'ci/temporal.jsonnet';
|
||||||
local utils = import 'ci/utils.jsonnet';
|
local utils = import 'ci/utils.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'apollo',
|
name: 'apollo',
|
||||||
replicas: 1,
|
replicas: 1,
|
||||||
dbname: 'apollo',
|
dbname: 'apollo',
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local temporal = import 'ci/temporal.jsonnet';
|
local temporal = import 'ci/temporal.jsonnet';
|
||||||
@ -6,7 +6,7 @@ local utils = import 'ci/utils.jsonnet';
|
|||||||
|
|
||||||
local site = std.extVar('site');
|
local site = std.extVar('site');
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'apollostarter',
|
name: 'apollostarter',
|
||||||
replicas: 1,
|
replicas: 1,
|
||||||
dbname: 'apollo',
|
dbname: 'apollo',
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local temporal = import 'ci/temporal.jsonnet';
|
local temporal = import 'ci/temporal.jsonnet';
|
||||||
@ -6,7 +6,7 @@ local utils = import 'ci/utils.jsonnet';
|
|||||||
|
|
||||||
local site = std.extVar('site');
|
local site = std.extVar('site');
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'apolloworker',
|
name: 'apolloworker',
|
||||||
replicas: 1,
|
replicas: 1,
|
||||||
dbname: 'apollo',
|
dbname: 'apollo',
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local frontend = import 'ci/frontend.jsonnet';
|
local frontend = import 'ci/frontend.jsonnet';
|
||||||
|
|
||||||
local tag = std.extVar('tag');
|
local tag = std.extVar('tag');
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'apollo-frontend',
|
name: 'apollo-frontend',
|
||||||
backend: false,
|
backend: false,
|
||||||
migrate: false,
|
migrate: false,
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local common = import 'hydra/deploy/common.jsonnet';
|
local common = import 'hydra/deploy/common.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'hydra-admin',
|
name: 'hydra-admin',
|
||||||
replicas: 1,
|
replicas: 1,
|
||||||
dbname: 'hydra',
|
dbname: 'hydra',
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local common = import 'hydra/deploy/common.jsonnet';
|
local common = import 'hydra/deploy/common.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'hydra-public',
|
name: 'hydra-public',
|
||||||
replicas: 1,
|
replicas: 1,
|
||||||
dbname: 'hydra',
|
dbname: 'hydra',
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'obsidian',
|
name: 'obsidian',
|
||||||
dbname: 'obsidian',
|
dbname: 'obsidian',
|
||||||
backend: true,
|
backend: true,
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local frontend = import 'ci/frontend.jsonnet';
|
local frontend = import 'ci/frontend.jsonnet';
|
||||||
|
|
||||||
local tag = std.extVar('tag');
|
local tag = std.extVar('tag');
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'obsidian-frontend',
|
name: 'obsidian-frontend',
|
||||||
backend: false,
|
backend: false,
|
||||||
migrate: false,
|
migrate: false,
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local temporal = import 'ci/temporal.jsonnet';
|
local temporal = import 'ci/temporal.jsonnet';
|
||||||
local utils = import 'ci/utils.jsonnet';
|
local utils = import 'ci/utils.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'keykeeper',
|
name: 'keykeeper',
|
||||||
replicas: if kubernetes.prod() then 3 else 1,
|
replicas: if kubernetes.prod() then 3 else 1,
|
||||||
dbname: 'peridot',
|
dbname: 'peridot',
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local temporal = import 'ci/temporal.jsonnet';
|
local temporal = import 'ci/temporal.jsonnet';
|
||||||
@ -14,7 +14,7 @@ local provisionWorkerRole(metadata) = kubernetes.define_role_v2(metadata, 'provi
|
|||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'peridotephemeral',
|
name: 'peridotephemeral',
|
||||||
replicas: if kubernetes.prod() then if site == 'extarches' then 5 else 10 else 1,
|
replicas: if kubernetes.prod() then if site == 'extarches' then 5 else 10 else 1,
|
||||||
dbname: 'peridot',
|
dbname: 'peridot',
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local temporal = import 'ci/temporal.jsonnet';
|
local temporal = import 'ci/temporal.jsonnet';
|
||||||
local utils = import 'ci/utils.jsonnet';
|
local utils = import 'ci/utils.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'peridotserver',
|
name: 'peridotserver',
|
||||||
replicas: if kubernetes.prod() then 5 else 1,
|
replicas: if kubernetes.prod() then 5 else 1,
|
||||||
dbname: 'peridot',
|
dbname: 'peridot',
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local utils = import 'ci/utils.jsonnet';
|
local utils = import 'ci/utils.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'yumrepofs',
|
name: 'yumrepofs',
|
||||||
replicas: if kubernetes.prod() then 3 else 1,
|
replicas: if kubernetes.prod() then 3 else 1,
|
||||||
dbname: 'peridot',
|
dbname: 'peridot',
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local db = import 'ci/db.jsonnet';
|
local db = import 'ci/db.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local temporal = import 'ci/temporal.jsonnet';
|
local temporal = import 'ci/temporal.jsonnet';
|
||||||
local utils = import 'ci/utils.jsonnet';
|
local utils = import 'ci/utils.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'yumrepofsupdater',
|
name: 'yumrepofsupdater',
|
||||||
replicas: if kubernetes.prod() then 4 else 1,
|
replicas: if kubernetes.prod() then 4 else 1,
|
||||||
dbname: 'peridot',
|
dbname: 'peridot',
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local frontend = import 'ci/frontend.jsonnet';
|
local frontend = import 'ci/frontend.jsonnet';
|
||||||
|
|
||||||
local tag = std.extVar('tag');
|
local tag = std.extVar('tag');
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'peridot-frontend',
|
name: 'peridot-frontend',
|
||||||
backend: false,
|
backend: false,
|
||||||
migrate: false,
|
migrate: false,
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
local RESFDEPLOY = import 'ci/RESFDEPLOY.jsonnet';
|
local resfdeploy = import 'ci/resfdeploy.jsonnet';
|
||||||
local kubernetes = import 'ci/kubernetes.jsonnet';
|
local kubernetes = import 'ci/kubernetes.jsonnet';
|
||||||
local common = import 'spicedb/deploy/common.jsonnet';
|
local common = import 'spicedb/deploy/common.jsonnet';
|
||||||
|
|
||||||
RESFDEPLOY.new({
|
resfdeploy.new({
|
||||||
name: 'spicedb',
|
name: 'spicedb',
|
||||||
replicas: 1,
|
replicas: 1,
|
||||||
dbname: 'spicedb',
|
dbname: 'spicedb',
|
||||||
|
Loading…
Reference in New Issue
Block a user