Skip to content

Commit

Permalink
Add k8-cloud to platform.releng Jenkins
Browse files Browse the repository at this point in the history
Part of eclipse-platform/eclipse.platform.swt#531

Signed-off-by: Hannes Wellmann <wellmann.hannes1@gmx.net>
  • Loading branch information
HannesWell committed Jan 21, 2023
1 parent 49a71c6 commit d0113e4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions instances/eclipse.platform.releng/config.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,35 @@ local permissionsTemplates = import '../../templates/permissions.libsonnet';
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=562806#c15
permissionsTemplates.projectPermissions("akurtakov@gmail.com", ["Agent/Connect", "Agent/Disconnect"])
},
clouds+: {
kubernetes+: {
local currentCloud = self,
templates+: {
"jipp-centos-7-agent-6gb": currentCloud.templates["centos-7"] {
labels: ["centos-7-6gb"],
kubernetes+: {
resources+: {
memory: {
limit: "6144Mi",
request: "6144Mi",
},
},
},
},
"jipp-centos-8-agent-4cpu": currentCloud.templates["centos-8"] {
labels: ["centos-8-4cpu"],
kubernetes+: {
resources+: {
cpu: {
limit: "4000m",
request: "4000m",
},
},
},
},
},
},
},
maven+: {
local superSettings = super.files["settings.xml"],
files+: {
Expand Down

0 comments on commit d0113e4

Please sign in to comment.