Questions tagged [jetbrains-space-automation]

Space Automation is a part of JetBrains Space responsible for CI/CD and other automated tasks. It lets you build, test, and deploy your projects among other things. Use this tag for questions about how to configure Space Automation jobs (especially regarding the Kotlin DSL), or other issues related to the DSL (like IDE integration).

5 questions
2
votes
1 answer

Jetbrains Space shellScript variables

I'm trying to use bash variables in a shellScript in jetbrains space automation to no success. My .space.kts is as follows; job("mvn compile"){ container(displayName="mvn", image="maven:3.8.5-eclipse-temurin-17"){ shellScript { …
BigMikeCodes
  • 23
  • 1
  • 5
2
votes
1 answer

Jetbrain Space Automation how to deploy an image to AWS EKS (Kubernetes)?

I am trying to be able to deploy an image from a space repository to AWS EKS. So far I managed to successfully save my docker image to Space. But I stuck at finding a way to upload my image to my cluster. So far I've created the following to save my…
1
vote
0 answers

Versioning via Git Tag in Jetbrains Space Automation

I am currently trying to solve a versioning problem in my application: I want to use the git tag as a version number inside a JetBrains Space automation script. My .space.kts is based on a template from the official docs and contains the following…
1
vote
1 answer

JetBrains Space Deploy to AWS Lambda

We are experimenting with Jetbrains Space as our code repo and CI/CD. We are trying to find a way to setup the .space.kts file to deploy to AWS Lambda. We want the develop branch to publish to the Lambda $Latest and when we merge to the main branch…
1
vote
2 answers

JetBrains Space automation script

I try to solve the following issue: job("Docker | deploy") { docker { build { context = "docker" file = "./docker/Dockerfile" labels["vendor"] = "mycompany" args["HTTP_PROXY"] =…