content
large_stringlengths
3
20.5k
url
large_stringlengths
54
193
branch
large_stringclasses
4 values
source
large_stringclasses
42 values
embeddings
listlengths
384
384
score
float64
-0.21
0.65
%} ```terraform templatefile("${path.module}/test.tftpl", { SPACE = "root" }) ``` {% endraw %} This results in the following output when the template is rendered: {% raw %} ```yaml inputs: - id: stack\_name name: Stack name stack: name: ${{ inputs.stack\_name }} space: root vcs: branch: main repository: my-repository p...
https://github.com/spacelift-io/user-documentation/blob/main//docs/concepts/blueprint/README.md
main
spacelift
[ -0.003969036042690277, 0.029475243762135506, 0.036238960921764374, 0.015812350437045097, -0.03528430685400963, 0.01439620740711689, -0.027927011251449585, 0.024220479652285576, 0.011148100718855858, 0.050068534910678864, -0.022075047716498375, -0.07676105946302414, 0.014171226881444454, 0....
0.006563
in the `inputs` section, neither can `inputs` be used in the `maps` section. Example of using maps: {% raw %} ```yaml inputs: - id: env name: Env # This type can also be a regular free text input (string) type: select options: - prod - dev maps: prod: stack\_name: prod-stack descripiton: This is stack is in production ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/concepts/blueprint/README.md
main
spacelift
[ 0.008112134411931038, 0.0027585881762206554, 0.032508499920368195, -0.0014802924124523997, -0.00994615163654089, -0.025115160271525383, -0.0029515677597373724, -0.03310978040099144, 0.001867334940470755, 0.055067673325538635, 0.02507876046001911, -0.09044180065393448, 0.036883093416690826, ...
0.104251
as if you were using the Terraform provider or the UI. Most of the options are straightforward; however, some require deeper knowledge and are covered in the sections below. For a full list of available options, please refer to the [Schema](#schema) section. ### Dependencies Dependencies follow the same rules and limit...
https://github.com/spacelift-io/user-documentation/blob/main//docs/concepts/blueprint/README.md
main
spacelift
[ -0.05353559926152229, -0.061482034623622894, 0.0431998074054718, -0.028959795832633972, -0.01739794947206974, -0.018472138792276382, -0.01254197396337986, -0.0425289124250412, 0.018209580332040787, 0.040034204721450806, -0.0050391643308103085, -0.09350117295980453, 0.00012217930634506047, ...
-0.022615
add validations to your input fields to ensure users provide valid data. The available validations depend on the input type: #### String Validation ```yaml inputs: - id: username name: Username type: short\_text validations: required: true min\_length: 3 max\_length: 20 pattern: "^[a-zA-Z0-9\_]+$" ``` Available string ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/concepts/blueprint/README.md
main
spacelift
[ -0.02284895069897175, 0.06375663727521896, 0.008446374908089638, -0.03981400653719902, -0.06645607948303223, 0.036015499383211136, -0.00000325329119732487, 0.020081182941794395, 0.026335934177041054, -0.03216858208179474, 0.027586527168750763, -0.05569872260093689, 0.07978915423154831, 0.0...
0.034357
"type": "string" }, { "type": "number" }, { "type": "boolean" } ] }, "type": { "type": "string", "enum": [ "boolean" ] } } }, { "additionalProperties": false, "required": [ "id", "name", "type", "options" ], "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "...
https://github.com/spacelift-io/user-documentation/blob/main//docs/concepts/blueprint/README.md
main
spacelift
[ 0.016251107677817345, 0.07020623236894608, 0.0038868491537868977, 0.038208674639463425, -0.07015576958656311, -0.019457820802927017, 0.022435763850808144, 0.01530975941568613, 0.010604258626699448, 0.011136986315250397, -0.0135534992441535, -0.06526920199394226, 0.004433854017406702, 0.058...
0.03426
1 } }, "key": { "type": "string" } } }, "stackWithKey": { "allOf": [ { "$ref": "#/definitions/stack" }, { "type": "object", "required": [ "key" ] } ] }, "attachment": { "type": "object", "additionalProperties": false, "properties": { "contexts": { "type": "array", "items": { "$ref": "#/definitions/context" } }, "clouds...
https://github.com/spacelift-io/user-documentation/blob/main//docs/concepts/blueprint/README.md
main
spacelift
[ 0.010225476697087288, 0.04626310616731644, -0.0065607489086687565, 0.05986333638429642, 0.024650681763887405, 0.02525261975824833, 0.031108086928725243, -0.033338747918605804, 0.05515948683023453, 0.10285382717847824, 0.016659997403621674, -0.0873909443616867, 0.039321187883615494, 0.06270...
-0.020739
{ "type": "string", "minLength": 1 }, "stack\_name": { "type": "string", "minLength": 1 }, "region": { "type": "string", "minLength": 1 } } }, "kubernetes\_vendor": { "type": "object", "additionalProperties": false, "required": [ "namespace" ], "properties": { "namespace": { "type": "string", "minLength": 1 } } }, "pul...
https://github.com/spacelift-io/user-documentation/blob/main//docs/concepts/blueprint/README.md
main
spacelift
[ 0.038601480424404144, 0.05897848680615425, 0.04138850420713425, -0.012541853822767735, -0.09062083810567856, -0.038605812937021255, 0.005580961238592863, -0.014826091937720776, 0.055366531014442444, 0.04908201843500137, 0.0003076030989177525, -0.12851904332637787, -0.008869829587638378, 0....
0.020177
# Changelog ## Changes between v4.1.0 and v4.0.0 ### Features - \*\*Rego v1 support\*\*: Self-hosted installations now support [Rego v1](../concepts/policy/README.md#rego-version-support) for policies. We recommend using Rego v1 for all new policies and migrating existing policies to v1 as soon as possible. Rego v1 int...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.010908124037086964, 0.03514339029788971, 0.01838916912674904, -0.03660348802804947, 0.026701180264353752, -0.05080464109778404, -0.05078371614217758, -0.04585665091872215, -0.04142848029732704, 0.0283951498568058, 0.035438213497400284, 0.012026273645460606, -0.03575505316257477, -0.0265...
0.040032
the platform without clicking through menus. - \*\*Account default runner images\*\*: Added support for account default runner images. See the [runtime security](../integrations/docker.md#account-default-runner-images) for more information. !!! note This feature was mistakenly listed in the v3.8.0 changelog but is actu...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.03873395547270775, 0.006745478603988886, -0.05691581591963768, 0.033641375601291656, 0.009031515568494797, -0.012381299398839474, -0.053440190851688385, 0.005357462912797928, 0.02377559244632721, 0.060382988303899765, -0.027354896068572998, -0.03255142271518707, 0.07311223447322845, 0.0...
0.006281
Stack](./reference-architecture/guides/telemetry/k8s-otel-grafana-stack.md), and [OpenTelemetry with Jaeger](./reference-architecture/guides/telemetry/k8s-otel-jaeger.md). Each guide includes installation steps, configuration examples, troubleshooting tips, and cleanup procedures. ## Changes between v3.8.0 and v3.7.0 #...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.1529609113931656, -0.021264562383294106, 0.05099035054445267, -0.042423099279403687, -0.1287773698568344, -0.08817362040281296, -0.02641940675675869, 0.032621510326862335, -0.02113828994333744, 0.009256930090487003, 0.014073179103434086, -0.09422114491462708, -0.025029374286532402, -0.0...
0.186608
download source code (required for sparse checkout functionality). - \*\*Dashboard\*\*: The Dashboard is now accessible to all users, not just admins. Non-admin users can view most dashboard widgets, with the Launch Pad and User Activity widgets remaining admin-only. - \*\*Filters\*\*: Enhanced filtering interface with...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.04074981063604355, -0.022149216383695602, -0.03816599398851395, 0.005328657571226358, -0.009679890237748623, -0.04486352950334549, 0.08039175719022751, 0.010806359350681305, -0.05041559413075447, 0.002391855465248227, 0.010968451388180256, -0.00936018954962492, 0.020278120413422585, -0....
0.038554
rel="nofollow"} via the `.database.backup\_retention\_period\_days` variable in the JSON config file for Cloudformation-based installations. ```json { [...] "database": { "backup\_retention\_period\_days": 7 } } ``` ## Changes between v2.6.1 and v3.0.0 We’re excited to announce Spacelift Self-Hosted v3! This version re...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.09871659427881241, -0.03613221272826195, -0.001306629041209817, 0.02706805244088173, -0.055334798991680145, -0.016614235937595367, -0.03836876526474953, -0.09276977926492691, 0.004562842193990946, -0.027134858071804047, 0.03289761766791344, -0.01966853067278862, 0.05573352426290512, -0....
0.004943
before discontinuing support for this installation method. ## Changes between v2.6.0 and v2.6.1 This release fixes an issue that could cause certain upgrades of existing Self-Hosted installations to fail. The issue was caused by one of our data migrations attempting to access the `allow\_non\_root\_admin\_space\_creati...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.010301593691110611, -0.022009918466210365, -0.03746531158685684, -0.003687812015414238, 0.03924258053302765, -0.1095266044139862, -0.036805279552936554, -0.06144944950938225, -0.030730770900845528, 0.04617366939783096, 0.12008273601531982, -0.05826013535261154, 0.03632929176092148, -0.0...
0.004262
`false` in the install script's config file. ```json { [...] "account\_name": "", "aws\_region": "", "tracing\_enabled": false [...] } ``` - Enabled [AZ rebalancing](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html){: rel="nofollow"} in the ECS services: availability zone (AZ) rebala...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.01755843497812748, 0.010579650290310383, -0.015925539657473564, 0.023517120629549026, 0.07874177396297455, -0.054626621305942535, 0.05298842117190361, -0.0935337021946907, 0.04784230515360832, 0.04493749141693115, 0.007041704375296831, 0.03088189661502838, 0.06460784375667572, 0.0101341...
0.086031
- We've added the ability to add custom headers to your [audit trail webhooks](../integrations/audit-trail.md), making it easier than ever to integrate with external systems. - We've added [an option](./cloudformation/install.md#load-balancer) to `config.json` to set `load\_balancer.subnet\_placement` to either public ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.06143435463309288, 0.013995968736708164, 0.03604620322585106, 0.014675475656986237, 0.08470776677131653, -0.05018007755279541, -0.02503342740237713, -0.021824056282639503, 0.020594343543052673, 0.05853096395730972, -0.01262867171317339, -0.06983420252799988, 0.008391878567636013, -0.018...
0.059239
converting the single-region KMS key used to encrypt sensitive data like stack and context secrets to a multi-region key. In order to do that, the installation includes a migration to convert the data from one key to another. The migration is performed inside a transaction, and in the case of any errors the changes wil...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ 0.05553238466382027, -0.02156047150492668, 0.028928635641932487, -0.06623132526874542, 0.015117106959223747, 0.011779988184571266, -0.024719223380088806, -0.027585871517658234, -0.03409649431705475, 0.07833537459373474, 0.021413231268525124, -0.04410329461097717, 0.08259972929954529, -0.02...
-0.077973
at the same time ## Changes between v1.0.0 and v1.1.0 ### Features - [Beta Terragrunt support](../vendors/terragrunt/README.md) - [Enhanced VCS integrations](https://feedback.spacelift.io/changelog/enhanced-vcs-integrations) - [OpenTofu v1.6.2 support](../concepts/stack/creating-a-stack.md#3-choose-vendor) - [New run h...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/changelog.md
main
spacelift
[ -0.0521305687725544, -0.020130954682826996, 0.04595481976866722, -0.0022774396929889917, 0.0383840873837471, -0.025289261713624, -0.12993215024471283, -0.03467278555035591, 0.005082344636321068, 0.07833345234394073, -0.010717815719544888, -0.010266273282468319, -0.07279408723115921, -0.015...
0.0223
# Install Methods We currently have two supported methods of installing Spacelift: - Using our [reference architecture](./reference-architecture/README.md) approach \*\*(recommended)\*\* . - Using our [CloudFormation](./cloudformation/install.md) approach. For new installations we recommend following the reference arch...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/install-methods.md
main
spacelift
[ -0.029147319495677948, -0.06841976940631866, 0.05500061810016632, -0.08476279675960541, -0.008485488593578339, -0.005466181319206953, -0.052074041217565536, -0.019253158941864967, -0.0067014493979513645, 0.04447350651025772, -0.022088566794991493, -0.046611808240413666, -0.021116331219673157...
-0.026474
# External Dependencies This document provides a comprehensive overview of all external components necessary to operate Spacelift. It is useful for those planning to deploy a self-hosted version of Spacelift and seeking to ensure their infrastructure is appropriately prepared. The configuration of these components is f...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/external-dependencies.md
main
spacelift
[ -0.1249309629201889, -0.0700911357998848, -0.0018617039313539863, 0.004488472826778889, -0.09073179215192795, -0.05065757781267166, 0.004908847622573376, 0.007050009444355965, -0.004368418827652931, 0.02630622684955597, -0.02131456881761551, -0.03171655163168907, 0.01857488602399826, -0.05...
0.019061
providers typically create a database snapshot before starting the upgrade, but verify this in your provider's documentation. - Scale [worker](../../concepts/worker-pools/README.md) replica counts to 0 before initiating the upgrade. This is a graceful operation: in-flight runs will complete first, then workers will shu...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/external-dependencies.md
main
spacelift
[ -0.027237894013524055, -0.02989976666867733, -0.010622191242873669, 0.0014860412338748574, -0.05332335829734802, -0.06384066492319107, -0.06413429975509644, -0.062308065593242645, -0.0148096838966012, 0.06249603256583214, -0.029159557074308395, 0.029841192066669464, 0.007204687688499689, -...
-0.043936
:-------: | | AWS KMS | ✅ | | Built-in RSA + AES256 | ✅ | 🔗 [Encryption reference](./reference/encryption.md) ## Message queues Spacelift uses message queues to dispatch events for asynchronous processing. We support two types of message queue: AWS SQS, or a built-in message queue that uses the Postgres database. We r...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/external-dependencies.md
main
spacelift
[ -0.0690326988697052, -0.026721490547060966, -0.044950541108846664, 0.048647984862327576, -0.08456213772296906, -0.060511887073516846, 0.00023671290546189994, -0.05481106415390968, 0.04470725730061531, 0.0398738868534565, -0.0026495219208300114, -0.004188386257737875, 0.05659012869000435, -...
0.071866
# Environment Requirements Spacelift consists of a number of containerised applications along with certain external dependencies. You are responsible for creating and maintaining the environment that Spacelift runs in. Take the following steps to get your environment ready for running Spacelift: 1. [Choose your hostnam...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/environment-requirements.md
main
spacelift
[ -0.04222525283694267, -0.07206201553344727, -0.000550731725525111, -0.015584365464746952, -0.10661645233631134, -0.055948417633771896, -0.04193037003278732, 0.020242810249328613, -0.03356651961803436, 0.006556860636919737, -0.05790334567427635, -0.10048557817935944, -0.019860364496707916, ...
-0.011207
# Introduction This page provides an overview of how to deploy Spacelift into your own environment. Our recommended approach is to deploy Spacelift into a Kubernetes cluster, however it is also possible to run Spacelift in other containerised environments like AWS ECS. ## Requirements !!! Tip We recommend reading the e...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/README.md
main
spacelift
[ -0.03405303135514259, -0.0749393031001091, 0.04651935026049614, -0.0429711677134037, -0.08546274900436401, 0.04636547341942787, -0.04161456972360611, 0.026166841387748718, -0.013335089199244976, 0.029457276687026024, -0.04256341606378555, -0.08885601907968521, -0.03275725245475769, -0.0373...
0.045211
# Deploying to EKS This guide provides a way to quickly get Spacelift up and running on an Elastic Kubernetes Service (EKS) cluster. In this guide we show a relatively simple networking setup where Spacelift is accessible via a public load balancer, but you can adjust this to meet your requirements as long as you meet ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-eks.md
main
spacelift
[ -0.022992853075265884, 0.015714477747678757, 0.017008017748594284, -0.0012892530066892505, -0.06837402284145355, 0.024767886847257614, -0.03867270424962044, -0.00066327367676422, 0.03344918042421341, 0.06945326924324036, -0.039637863636016846, -0.06411108374595642, 0.00974021665751934, -0....
0.09274
the outside world using an Application Load Balancer for HTTP traffic, and a Network Load Balancer for MQTT traffic. ### Workers In this guide Spacelift workers will also be deployed in EKS. That means that your Spacelift runs will be executed in the same environment as the app itself (we recommend using another K8s na...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-eks.md
main
spacelift
[ -0.10163817554712296, 0.03040103241801262, 0.01593756675720215, -0.011952118948101997, -0.12172669917345047, -0.017105136066675186, -0.0488988533616066, -0.002915377262979746, 0.01658991165459156, 0.05230983346700668, -0.07498392462730408, -0.12461938709020615, 0.06915449351072311, -0.0066...
0.095379
still export the usage data via the Web UI. # export TF\_VAR\_spacelift\_public\_api="https://app.spacelift.io" ``` !!! note The admin login/password combination is only used for the very first login to the Spacelift instance. It can be removed after the initial setup. More information can be found in the [initial setu...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-eks.md
main
spacelift
[ -0.03610752895474434, -0.0011973765213042498, -0.08802054822444916, 0.00022731062199454755, -0.07738735526800156, -0.007736516650766134, 0.024228813126683235, 0.013363196514546871, 0.039705995470285416, 0.04167862981557846, -0.006976672913879156, -0.1042417660355568, 0.059623077511787415, ...
-0.036334
upload the container images to your container registries and the launcher binary to the binaries S3 bucket: ```shell # Login to the private ECR aws ecr get-login-password --region "${AWS\_REGION}" | docker login --username AWS --password-stdin "${PRIVATE\_ECR\_LOGIN\_URL}" tar -xzf self-hosted-${SPACELIFT\_VERSION}.tar...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-eks.md
main
spacelift
[ -0.011881132610142231, 0.02986408956348896, 0.003108656033873558, -0.0761536955833435, 0.05717771500349045, 0.03506942093372345, -0.02401086501777172, 0.014561228454113007, 0.00801154412329197, 0.031199997290968895, -0.04697059839963913, -0.10440288484096527, 0.013639593496918678, -0.01055...
-0.089303
the following variables to your module configuration: ```hcl module "spacelift" { # VCS Gateway configuration vcs\_gateway\_domain = "vcs-gateway.mycorp.io" # The DNS record for the VCS Gateway service, without protocol. vcs\_gateway\_acm\_arn = "" # Must be a valid, issued certificate (separate from the server certifi...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-eks.md
main
spacelift
[ -0.045377396047115326, 0.001186985056847334, 0.029611242935061455, -0.02472268044948578, -0.0811677873134613, -0.0024900699499994516, -0.04264567419886589, -0.03693481534719467, 0.08048882335424423, 0.05775941535830498, -0.04852999374270439, -0.11981760710477829, 0.016745295375585556, -0.0...
0.052438
# Deploying to an on-prem Kubernetes cluster This guide provides a way to quickly get Spacelift up and running on your Kubernetes cluster. !!! warning Creating a database in Kubernetes, while possible, is not recommended. If you choose to do so, set up a volume for continuity of operations in the event of a power outag...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-onprem.md
main
spacelift
[ 0.006006933748722076, -0.018347658216953278, 0.026030730456113815, -0.005203917156904936, -0.0601099357008934, 0.0341578908264637, -0.047708407044410706, 0.044452447444200516, -0.023656627163290977, 0.054708342999219894, -0.010348851792514324, -0.03828742355108261, 0.016188709065318108, -0...
0.033651
secure since your runs are executed in the same environment since you don't need to expose [the MQTT server](../reference/mqtt-broker.md#mqtt-broker) with a load balancer. ## Requirements Before proceeding with the next steps, the following tools must be installed on your computer: - [Docker](https://docs.docker.com/en...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-onprem.md
main
spacelift
[ -0.03177281841635704, 0.10936804115772247, -0.07359251379966736, 0.019932078197598457, -0.06025851517915726, -0.04533131420612335, -0.07452578097581863, -0.017037807032465935, 0.018952390179038048, 0.014216713607311249, -0.008525320328772068, -0.08596884459257126, 0.09546009451150894, -0.0...
-0.029043
= "Enabled" } } resource "minio\_s3\_bucket\_versioning" "policy" { bucket = minio\_s3\_bucket.policy.bucket versioning\_configuration { status = "Enabled" } } resource "minio\_s3\_bucket\_versioning" "run\_logs" { bucket = minio\_s3\_bucket.run\_logs.bucket versioning\_configuration { status = "Enabled" } } resource "...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-onprem.md
main
spacelift
[ 0.04287596419453621, 0.016198115423321724, -0.024321116507053375, -0.02327970415353775, 0.050822384655475616, 0.00888232234865427, 0.040166351944208145, 0.013445425778627396, -0.029865138232707977, 0.08158418536186218, 0.03194485604763031, -0.07863519340753555, 0.03675717115402222, -0.0092...
-0.010698
`spacelift-drain` - contains variables specific to the Spacelift drain. ```shell # Reference here the MinIO service of your cluster export OBJECT\_STORAGE\_MINIO\_ENDPOINT="myminio-hl.tenant-ns.svc.cluster.local:9000" # Set this to false if you're not using a secure connection for MinIO export OBJECT\_STORAGE\_MINIO\_U...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-onprem.md
main
spacelift
[ 0.05365939438343048, 0.013125053606927395, -0.04769526422023773, 0.048879917711019516, -0.08346164971590042, 0.043282974511384964, -0.017700333148241043, 0.0708438977599144, 0.03726701810956001, 0.049982763826847076, -0.03756827861070633, -0.10719329118728638, -0.034516431391239166, -0.050...
0.030106
# Guides ## Quick start guides If you just want to get up and running quickly, please check out one of our quick start guides: - [Deploying to AKS](./deploying-to-aks.md). - [Deploying to ECS](./deploying-to-ecs.md). - [Deploying to EKS](./deploying-to-eks.md). - [Deploying to GKE](./deploying-to-gke.md). - [Deploying ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/README.md
main
spacelift
[ -0.020949656143784523, -0.033873312175273895, 0.03901012986898422, 0.00003621004361775704, -0.03684145584702492, 0.029382722452282906, -0.03623386472463608, 0.0016654998762533069, -0.04687460884451866, 0.044729672372341156, 0.008039252832531929, -0.04563417285680771, -0.0004102735547348857, ...
0.059574
# First setup After deploying Spacelift to your environment there are a few steps required to get you up and running: 1. [Login to your instance using admin credentials](#logging-in-using-admin-credentials). 2. [Create an account](#creating-an-account). 3. [Start configuring your account](#start-configuring-your-accoun...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/first-setup.md
main
spacelift
[ -0.04468807578086853, -0.12781481444835663, -0.0031929751858115196, -0.04807862266898155, -0.07719533145427704, -0.014063884504139423, 0.004726191516965628, 0.014398728497326374, -0.031209615990519524, 0.03545118495821953, 0.008670737966895103, -0.07409745454788208, 0.024904966354370117, 0...
-0.077812
# Deploying to AKS This guide provides a way to quickly get Spacelift up and running on an Azure Kubernetes Service (AKS) cluster. In this guide we show a relatively simple networking setup where Spacelift is accessible via a public load balancer. To deploy Spacelift on AKS you need to take the following steps: 1. [Dep...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-aks.md
main
spacelift
[ -0.033291045576334, -0.025654610246419907, 0.0011668205261230469, 0.013895229436457157, -0.08475470542907715, 0.052662115544080734, 0.012292776256799698, -0.04852667823433876, 0.03259960189461708, 0.11104892939329147, -0.028335997834801674, -0.03260714188218117, 0.021881727501749992, -0.00...
0.074572
rel="nofollow"} or [Terraform](https://developer.hashicorp.com/terraform){: rel="nofollow"}. !!! info In the following sections of the guide, OpenTofu will be used to deploy the infrastructure needed for Spacelift. If you are using Terraform, simply swap `tofu` for `terraform`. ## Generate encryption key Spacelift requ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-aks.md
main
spacelift
[ -0.005326110869646072, -0.021729696542024612, -0.0780627503991127, 0.025304893031716347, -0.0569457933306694, 0.009012204594910145, 0.0014887452125549316, -0.09351760149002075, 0.031026450917124748, 0.0406980887055397, 0.007101422641426325, -0.05159193277359009, 0.05244087427854538, 0.0139...
-0.00957
documentation for the [terraform-azure-spacelift-selfhosted](https://search.opentofu.org/module/spacelift-io/spacelift-selfhosted/azure/latest){: rel="nofollow"} module before applying your infrastructure in case there are any settings that you wish to adjust. Once you are ready, apply your changes: ```shell tofu apply...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-aks.md
main
spacelift
[ 0.02418275736272335, -0.01838599517941475, -0.002998323179781437, 0.01613481342792511, -0.05544595420360565, -0.02107246406376362, -0.060668591409921646, -0.06562576442956924, -0.009433511644601822, 0.07315069437026978, -0.03114338405430317, -0.09223388135433197, 0.00972119253128767, -0.01...
-0.060189
limits. Note that the staging root CA is untrusted by browsers, and Spacelift workers won't be able to connect to the server endpoint either. === "Production" ```shell export ACME\_EMAIL="your email" kubectl apply -f - < secrets.yaml kubectl apply -f secrets.yaml ``` ### Deploy application You need to provide a number ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-aks.md
main
spacelift
[ -0.006155598908662796, 0.014378450810909271, 0.04703084006905556, -0.0272830743342638, -0.0809866264462471, -0.04187873750925064, -0.0596935972571373, -0.018192386254668236, 0.08025803416967392, 0.09817010164260864, -0.03743069991469383, -0.13103064894676208, 0.042428843677043915, -0.03614...
0.009678
Workers](../../../concepts/worker-pools/kubernetes-workers.md).\*\* ## Deletion / uninstall Before running `tofu destroy` on the infrastructure, we recommended that you do a proper cleanup in the K8s cluster. That's because the Spacelift helm chart links a couple of Azure resources (such as an external IP) that are not...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-aks.md
main
spacelift
[ -0.03187401220202446, 0.07438069581985474, 0.06743752956390381, -0.00980075541883707, 0.019991982728242874, 0.012509875930845737, -0.0072480421513319016, -0.11664627492427826, 0.07306134700775146, 0.10995472967624664, -0.020816318690776825, -0.045498888939619064, 0.01674216240644455, 0.031...
0.083332
# Deploying to GKE This guide provides a way to quickly get Spacelift up and running on a Google Kubernetes Engine (GKE) cluster. In this guide we show a relatively simple networking setup where Spacelift is accessible via a public load balancer, but you can adjust this to meet your requirements as long as you meet the...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-gke.md
main
spacelift
[ -0.039921291172504425, -0.009589608758687973, 0.08495085686445236, -0.060289423912763596, -0.09720905125141144, -0.03970703110098839, -0.028109580278396606, -0.005860275588929653, -0.035201895982027054, 0.0044395518489181995, -0.03010745719075203, -0.09446999430656433, 0.01743902824819088, ...
0.035502
object storage requirements and authentication can be found [here](../reference/object-storage.md). ### Database Spacelift requires a PostgreSQL database to operate. In this guide we'll create a new dedicated Cloud SQL instance. You can also reuse an existing instance and create a new database in it. In that case you'l...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-gke.md
main
spacelift
[ -0.0433327779173851, -0.1032998263835907, -0.010042190551757812, -0.002774666529148817, -0.11460269242525101, 0.016791341826319695, 0.010486993938684464, -0.03220842406153679, 0.023687513545155525, 0.06202398240566254, -0.07250900566577911, -0.08347620815038681, 0.06894681602716446, -0.048...
-0.019455
the same environment. ## Requirements Before proceeding with the next steps, the following tools must be installed on your computer. - [Google Cloud CLI](https://cloud.google.com/sdk/docs/install){: rel="nofollow"}. - [Docker](https://docs.docker.com/engine/install/){: rel="nofollow"}. - [Helm](https://helm.sh/docs/hel...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-gke.md
main
spacelift
[ -0.013824906200170517, 0.04236222803592682, 0.006584907881915569, -0.03755781054496765, 0.03280121088027954, -0.07199225574731827, -0.07717566937208176, -0.060387562960386276, 0.005074536427855492, -0.028524087741971016, 0.04119185358285904, -0.09628653526306152, 0.026489131152629852, -0.0...
-0.064465
any settings that you wish to adjust. Once you are ready, apply your changes: ```shell tofu apply ``` !!! info If you encounter the following error: ```googleapi: Error 400: Service account service-xxxxxxxxxxxx@service-networking.iam.gserviceaccount.com does not exist```, it means that the Service Networking service ac...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-gke.md
main
spacelift
[ -0.0592748261988163, -0.025022245943546295, 0.058126915246248245, -0.040852610021829605, -0.07456003129482269, 0.0006786570302210748, 0.029136192053556442, -0.026634689420461655, -0.0483878031373024, 0.11273670941591263, -0.018567446619272232, -0.10268068313598633, 0.09427417814731598, -0....
-0.037133
PGPASSWORD=${DB\_ROOT\_PASSWORD} \ psql -h 127.0.0.1 -U postgres -d "${DATABASE\_NAME}" -c "GRANT ALL ON SCHEMA public TO \"${DATABASE\_USER}\";" # Stop the cloud sql proxy kill %1 ``` ## Push images to Artifact Registry From the previous terraform apply step, you need to grab the URL of the registry from the output an...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-gke.md
main
spacelift
[ -0.004795102868229151, 0.002357868477702141, 0.02235371433198452, -0.03755610063672066, -0.05534310266375542, -0.026205601170659065, -0.00577895250171423, -0.05143163353204727, -0.03977934643626213, 0.08109807223081589, -0.10233184695243835, -0.0800563171505928, 0.031964294612407684, -0.01...
-0.130313
You can follow the deployment progress with: `kubectl logs -n ${K8S\_NAMESPACE} deployments/spacelift-server` ### VCS Gateway Service Ideally, your VCS provider [should be accessible](../reference/networking.md) from both the Spacelift backend and its workers. If direct access is not possible, you can use [VCS Agent Po...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-gke.md
main
spacelift
[ -0.04544086754322052, -0.04738214984536171, 0.03884294629096985, -0.03867493197321892, -0.11889883130788803, -0.012448085471987724, -0.02446098066866398, -0.008661875501275063, 0.08163361251354218, 0.021352820098400116, -0.07172874361276627, -0.0727413222193718, -0.012253882363438606, -0.0...
0.089048
the Terraform module controls whether the database can be automatically deleted. If set to `true` — or if omitted, as it defaults to `true` — the database \*\*will be protected from deletion\*\*. This means running `tofu destroy` \*\*will not delete\*\* the database, and you will need to remove it manually. ```shell he...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-gke.md
main
spacelift
[ 0.005908501334488392, 0.03998566418886185, 0.03878069296479225, -0.0047179823741316795, -0.002491302089765668, -0.0019019297324120998, -0.015165102668106556, -0.13017544150352478, 0.07976693660020828, 0.06441269814968109, -0.016087600961327553, -0.0510968379676342, 0.039524003863334656, -0...
0.017542
# Observability This guide provides recommendations for monitoring your Self-Hosted Spacelift installation to ensure it's running correctly. Proper monitoring helps identify potential issues before they impact your operations and ensures the reliability of your Spacelift infrastructure. ## Metrics to Monitor ### Core S...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/observability.md
main
spacelift
[ -0.02303258888423443, -0.07933590561151505, -0.04043390974402428, 0.0315970778465271, -0.03963908553123474, -0.05270252376794815, -0.024354467168450356, 0.02104869671165943, -0.062079206109046936, 0.03238510712981224, -0.048360295593738556, -0.04839408025145531, -0.014076740480959415, -0.0...
0.140959
deleted from the queue. - `postgres\_queue.messages.total` (gauge) - total number of messages in the queue. - `postgres\_queue.messages.visible` (gauge) - number of visible messages in the queue. ### Worker Pool Controller (Kubernetes) For Kubernetes worker pool deployments, you can monitor the worker pool controller u...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/observability.md
main
spacelift
[ 0.0056509110145270824, -0.05204124376177788, -0.03594072908163071, 0.07536303997039795, -0.057319968938827515, -0.03413456305861473, 0.0857573077082634, -0.07517854869365692, 0.11247633397579193, 0.0007688533514738083, -0.02843325212597847, -0.0647410973906517, -0.04646724462509155, -0.050...
0.123845
# Disaster recovery This page outlines some considerations to take when creating a disaster recovery plan for your Spacelift installation. Because disaster recovery plans are very specific to your organization and the way that your are deploying Spacelift, this page does not provide step-by-step instructions for enabli...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/disaster-recovery.md
main
spacelift
[ -0.05974392965435982, -0.09670621901750565, 0.06126857548952103, -0.00746708270162344, -0.057420965284109116, 0.0255862046033144, -0.03689458593726158, 0.015437672846019268, -0.03870953246951103, -0.011538498103618622, -0.0524926520884037, 0.05392177775502205, 0.002990991808474064, -0.0257...
-0.022493
key creation. If you want to setup a backup region for disaster recovery purposes, make sure to use a global key, and replicate that key to your backup region. ### RSA When using [RSA keys for encryption](../reference/encryption.md#rsa) you should ensure that the RSA key you are using is available in the case of a disa...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/disaster-recovery.md
main
spacelift
[ -0.017099354416131973, 0.002438293769955635, -0.04794931411743164, 0.019367165863513947, -0.10901756584644318, -0.0186258964240551, -0.0015902073355391622, -0.018184181302785873, 0.0376712940633297, -0.007772789336740971, -0.022922152653336525, 0.044746432453393936, 0.07588984817266464, -0...
-0.024725
# Deploying to ECS This guide provides a way to quickly get Spacelift up and running on an Elastic Compute Service (ECS) Fargate cluster. In this guide we show a relatively simple networking setup where Spacelift is accessible via a public load balancer, but you can adjust this as long as you meet the basic [networking...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-ecs.md
main
spacelift
[ -0.010773704387247562, -0.0063963718712329865, -0.0007225342560559511, -0.014048086479306221, -0.03210494667291641, 0.004750245716422796, -0.07546348869800568, 0.02346274070441723, -0.0027507836930453777, 0.007230271585285664, -0.05376282334327698, -0.0574263371527195, 0.0006717172218486667,...
0.031255
MQTT server to handle interactions with workers. The server is exposed to the outside world using an Application Load Balancer for HTTP traffic, and a Network Load Balancer for MQTT traffic. ### Workers In this guide Spacelift workers will be deployed as an EC2 autoscaling group, using the [terraform-aws-spacelift-work...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-ecs.md
main
spacelift
[ -0.060428839176893234, 0.08235982805490494, -0.000038233301893342286, 0.03795183077454567, -0.05464567989110947, -0.06504891812801361, -0.06022177264094353, -0.035779327154159546, -0.01672668196260929, 0.03188155218958855, -0.03645337000489235, -0.13178613781929016, 0.06695248931646347, 0....
0.028293
Terraform in the previous step, you can just ignore this # variable since you might want to reference the aws\_acm\_certificate\_validation resource directly. export TF\_VAR\_server\_certificate\_arn="" # If you want to automatically send usage data to Spacelift, uncomment the following variable. #export TF\_VAR\_enabl...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-ecs.md
main
spacelift
[ -0.02319692261517048, 0.017731089144945145, -0.036591995507478714, -0.005967375356703997, -0.055567916482686996, -0.016284197568893433, 0.04653175175189972, -0.04728592187166214, 0.009621846489608288, 0.0364510603249073, -0.03314747288823128, -0.12283038347959518, 0.1041627749800682, 0.037...
-0.085577
module.spacelift-infra.kms\_encryption\_key\_arn kms\_signing\_key\_arn = module.spacelift-infra.kms\_signing\_key\_arn kms\_key\_arn = module.spacelift-infra.kms\_key\_arn drain\_security\_group\_id = module.spacelift-infra.drain\_security\_group\_id scheduler\_security\_group\_id = module.spacelift-infra.scheduler\_s...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-ecs.md
main
spacelift
[ -0.03216792643070221, 0.02071618102490902, -0.06442395597696304, 0.054206155240535736, -0.012298638932406902, -0.026727844029664993, 0.060626763850450516, 0.007394752930849791, 0.008123960345983505, -0.007400323636829853, 0.005711876787245274, -0.07188381999731064, 0.05454695597290993, 0.0...
0.00518
DNS zone name = "example.com." } # This one is the main address of your Spacelift installation. # It should be a CNAME to the tofu output server\_lb\_dns\_name. resource "aws\_route53\_record" "server" { zone\_id = data.aws\_route53\_zone.spacelift-zone.zone\_id name = var.server\_domain type = "CNAME" ttl = 300 record...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-ecs.md
main
spacelift
[ -0.056534234434366226, 0.0004736022383440286, -0.028413735330104828, 0.023805590346455574, -0.07211784273386002, -0.035488639026880264, -0.05651174858212471, 0.015475837513804436, 0.025706658139824867, 0.041901085525751114, -0.06475237011909485, -0.12475897371768951, 0.05804968997836113, 0...
-0.054548
worker # pool documentation for commands to use to base64-encode the key. export TF\_VAR\_worker\_pool\_private\_key="" ``` Next, you can use the following code to deploy your worker pool. Note that this deploys the workers into the same VPC as Spacelift, but this is not required for the workers to function. Please ref...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/deploying-to-ecs.md
main
spacelift
[ -0.04175984486937523, -0.008931638672947884, -0.09413734078407288, 0.0185457244515419, -0.016477374359965324, 0.02881477028131485, 0.04725273698568344, -0.05046452581882477, -0.03372699022293091, 0.027632996439933777, -0.04450628161430359, -0.07533255219459534, 0.048190005123615265, 0.0351...
0.004753
# Deploying to air-gapped environments An air-gapped environment is a network security measure that physically isolates computers or networks from unsecured networks, such as the public internet. Air-gapped environments can vary significantly in their level of isolation and implementation: - \*\*Complete isolation\*\*:...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/air-gapped.md
main
spacelift
[ -0.04004304111003876, -0.038477130234241486, -0.015392394736409187, -0.013286600820720196, -0.013255546800792217, -0.03819341957569122, -0.009061535820364952, 0.01593737117946148, -0.04818842187523842, -0.015044841915369034, 0.035527341067790985, -0.02115357480943203, -0.03580277040600777, ...
0.010682
v3.7.2 to match dependency lock file - Downloading package for linux\_amd64... - Package authenticated: signed ``` !!! note Ensure you specify the correct `-platform` flag to match your runner platform. For example, running this command from a macOS workstation without the platform flag may download incompatible provid...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/air-gapped.md
main
spacelift
[ -0.06589466333389282, -0.009557733312249184, 0.011103532277047634, -0.03344867005944252, 0.04418549686670303, 0.009948093444108963, -0.07301396876573563, -0.04364044591784477, -0.002539576729759574, 0.037712883204221725, 0.018295830115675926, -0.12221450358629227, -0.03467114642262459, -0....
-0.046276
# OpenTelemetry with Grafana stack in Kubernetes This guide provides a way to configure OpenTelemetry with Grafana stack for your Spacelift installation running in Kubernetes. [OpenTelemetry](https://opentelemetry.io/){: rel="nofollow"} is a set of open standards and tools for collecting, processing, and exporting tele...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-grafana-stack.md
main
spacelift
[ -0.053984593600034714, -0.028646646067500114, 0.0030457833781838417, 0.033631980419158936, -0.08068472892045975, -0.07111715525388718, -0.03510725498199463, 0.0034751130733639, 0.04742901399731636, 0.04191206768155098, -0.011729915626347065, -0.10210610181093216, -0.05867268145084381, -0.0...
0.176658
pod restarts. This is fine for testing and demo purposes, but not suitable for production use. For production environments, configure an object storage backend like S3, Google Cloud Storage, or Azure Blob Storage. Here's an example configuration for AWS EKS: Click to expand tempo-values.yaml (production with S3) ```yam...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-grafana-stack.md
main
spacelift
[ -0.018078317865729332, -0.012737014330923557, -0.01324489712715149, 0.042227648198604584, -0.021430643275380135, 0.025078238919377327, 0.001623958465643227, -0.0557296983897686, 0.07171715795993805, 0.0855901911854744, 0.019221020862460136, -0.008422196842730045, 0.019284090027213097, -0.0...
0.090829
backend (like Prometheus or [Mimir](https://grafana.com/oss/mimir/){: rel="nofollow"}) and add it as an additional exporter in the collector configuration. !!! tip "Alternative Telemetry Backends" While this guide uses Grafana Tempo, the OpenTelemetry Collector can export to many other backends by changing the exporter...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-grafana-stack.md
main
spacelift
[ -0.0893324688076973, -0.009391510859131813, -0.10133201628923416, 0.03943133354187012, -0.008969569578766823, -0.12209354341030121, -0.02162577211856842, -0.0614304319024086, 0.00345244980417192, 0.04258546605706215, 0.036190953105688095, -0.09528537094593048, -0.02609894424676895, -0.0444...
0.156481
values file for Grafana. Save the following as `grafana-values.yaml`: ```yaml title="grafana-values.yaml" resources: requests: cpu: 200m memory: 256Mi limits: memory: 1Gi adminUser: admin adminPassword: adminpw ``` !!! warning Change these credentials to something secure for production use. Install the Grafana chart: `...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-grafana-stack.md
main
spacelift
[ 0.005699096247553825, 0.034911349415779114, -0.07119636982679367, -0.00904130283743143, -0.058608852326869965, -0.04226264730095863, -0.05494869127869606, -0.010574357584118843, 0.07894641160964966, 0.10171612352132797, 0.0037173661403357983, -0.09171374887228012, -0.05202396214008331, -0....
0.083151
persistent storage](https://grafana.com/docs/grafana/latest/setup-grafana/installation/helm#enable-persistent-storage-recommended){: rel="nofollow"} by adding the following to your `grafana-values.yaml`: ```yaml title="grafana-values.yaml (with persistence)" # ... Rest of your grafana-values.yaml persistence: enabled: ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-grafana-stack.md
main
spacelift
[ -0.037624478340148926, -0.016340846195816994, -0.04311339557170868, 0.05104544386267662, -0.01807628944516182, -0.04514286294579506, -0.06378249824047089, -0.07106097042560577, 0.041244987398386, 0.025331290438771248, 0.05057988688349724, -0.03483467176556587, -0.049570921808481216, -0.000...
0.046821
# Telemetry in Kubernetes These guides cover configuring telemetry collection for Spacelift installations running in Kubernetes. Telemetry helps you monitor service performance, trace requests across components, and troubleshoot issues in your Spacelift deployment. ## Available guides Choose the telemetry backend that ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/README.md
main
spacelift
[ -0.05682507902383804, -0.024987541139125824, 0.04163944348692894, -0.03790518641471863, -0.08805572986602783, -0.050905995070934296, -0.03091120533645153, 0.012726607732474804, 0.014793790876865387, 0.04661808907985687, -0.010312860831618309, -0.09578617662191391, -0.041450224816799164, -0...
0.13824
# OpenTelemetry with Jaeger in Kubernetes This guide provides a way to configure OpenTelemetry telemetry with Jaeger for your Spacelift installation running in Kubernetes. [OpenTelemetry](https://opentelemetry.io/){: rel="nofollow"} is a set of open standards and tools for collecting, processing, and exporting telemetr...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-jaeger.md
main
spacelift
[ -0.044940002262592316, -0.021576814353466034, 0.03937648609280586, -0.028030693531036377, -0.048432741314172745, -0.06413362920284271, 0.025404302403330803, -0.003101605223491788, 0.05972396209836006, 0.01732359267771244, -0.014109003357589245, -0.09611920267343521, -0.04992161691188812, -...
0.219375
based on your trace retention needs and expected trace volume. Apply the PVC: ```shell kubectl apply -f jaeger-pvc.yaml ``` #### Configure Jaeger to use Badger Create a values file for Jaeger with Badger storage. Save the following as `jaeger-values.yaml`: ```yaml title="jaeger-values.yaml (with Badger storage)" allInO...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-jaeger.md
main
spacelift
[ 0.005369451828300953, -0.0065173073671758175, 0.02461271919310093, -0.012721671722829342, 0.010313250124454498, 0.005637926049530506, 0.012009374797344208, 0.02040211297571659, 0.04202955216169357, 0.043697841465473175, 0.04076186940073967, -0.07568707317113876, 0.03333688899874687, 0.0132...
0.060958
the Jaeger collector service. Since both the OTEL Collector and Jaeger are in the same namespace (`monitoring`), we can use the short service name `jaeger-collector` with port `4317`. If they were in different namespaces, you would need the fully qualified DNS name: `{service-name}.{namespace}.svc.cluster.local:{port}`...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-jaeger.md
main
spacelift
[ -0.0497908778488636, -0.025284986943006516, -0.00648068031296134, -0.05141528695821762, -0.07118760049343109, -0.05884880572557449, 0.006745355669409037, -0.013555323705077171, 0.08207354694604874, 0.01196395792067051, 0.015261072665452957, -0.15458153188228607, -0.024775227531790733, -0.0...
0.162648
operation, tags, duration, and more. ## Troubleshooting If traces aren't appearing in Jaeger, here are the most common causes: - Traces aren't reaching Jaeger - The Jaeger pod restarted and lost traces (when using in-memory storage) - Traces were deleted by Jaeger's retention policy Follow the steps below to diagnose w...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-otel-jaeger.md
main
spacelift
[ -0.009279358200728893, -0.06015155836939812, 0.09502061456441879, -0.015131762251257896, -0.03350047394633293, -0.05329196900129318, 0.006798343732953072, -0.0283154658973217, 0.05962582305073738, 0.03147147223353386, 0.038951024413108826, -0.1122296154499054, -0.01892135664820671, -0.0094...
0.107761
# Datadog Telemetry in Kubernetes This guide provides a way to configure Datadog telemetry for your Spacelift installation running in Kubernetes. By deploying the Datadog agent in your cluster, you can collect traces and metrics from Spacelift services to monitor performance and troubleshoot issues. Spacelift backend s...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-datadog.md
main
spacelift
[ 0.019662469625473022, -0.0488617904484272, 0.014520365744829178, -0.006692275404930115, -0.05558086559176445, -0.03652176260948181, -0.019267331808805466, -0.006375045049935579, 0.06644869595766068, 0.036929886788129807, -0.026200296357274055, -0.07430063188076019, -0.0023770660627633333, ...
0.056933
- `DD\_TAGS` - Additional tags in the format `key1:value1,key2:value2`. - `DD\_TRACE\_SAMPLE\_RATE` - Sample rate for trace collection (default: `1.0`). For a complete list of available configuration options, see the [Datadog Go SDK documentation](https://docs.datadoghq.com/tracing/trace\_collection/library\_config/go/...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/guides/telemetry/k8s-datadog.md
main
spacelift
[ -0.00667605409398675, -0.023471273481845856, 0.0013153383042663336, 0.012070545926690102, -0.028966572135686874, -0.0601988285779953, -0.010534893721342087, 0.004816815257072449, -0.008217602968215942, -0.029622860252857208, 0.05990567430853844, -0.05764108523726463, 0.03750327229499817, -...
0.01284
# Networking Spacelift is made up of a number of containerised components, along with certain external dependencies like a Postgres database and object storage. The following sections explain the different components that make up Spacelift, explains the role they perform and the specific networking requirements that th...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/networking.md
main
spacelift
[ -0.06618049740791321, -0.0154120409861207, 0.07022380083799362, -0.009488874115049839, -0.09320173412561417, 0.005476522725075483, 0.004458700772374868, -0.010146819055080414, 0.030462490394711494, 0.007579657714813948, -0.06650097668170929, -0.04046075791120529, -0.006566987838596106, -0....
0.162925
required for Spacelift to function. Processing of these jobs once they are triggered is handled by the drain. ### Ingress No inbound access to the scheduler is required. ### Egress | Name | Port | Protocol | Optional/Required | Description | | ------------- | ------------ | -------- | ----------------- | --------------...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/networking.md
main
spacelift
[ -0.10247915238142014, 0.009092111140489578, 0.004182759672403336, 0.049216821789741516, -0.05946565791964531, -0.05491211637854576, 0.06700000166893005, -0.05489075183868408, 0.04844684898853302, 0.01120563130825758, -0.05436772108078003, -0.03233443945646286, -0.04454242065548897, -0.0346...
0.075642
# Slack The Spacelift Slack integration relies on a Slack app being created to allow you to link Spacelift to your Slack workspace. There are two ways you can do this: 1. Dynamically via your organization settings. 2. Statically via the environment. To find out how to dynamically configure your Slack app via the fronte...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/slack.md
main
spacelift
[ -0.02115103229880333, -0.13294363021850586, 0.02540256269276142, -0.00940840132534504, -0.06593074649572372, -0.03474833071231842, -0.01672491617500782, 0.05843840911984444, 0.006158511154353619, 0.0648459643125534, -0.03397660329937935, -0.041473355144262314, 0.007101425901055336, 0.06355...
0.092624
## Configuration The following table contains the environment variables required for the Slack integration to work: | Environment variable | Description | | ------------------------- | ------------------------------------------------------ | | `SLACK\_APP\_CLIENT\_ID` | Corresponds to the \_Client ID\_ of your Slack ap...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/slack.md
main
spacelift
[ 0.03141842782497406, -0.06621178239583969, -0.022869721055030823, -0.012572403065860271, -0.014689580537378788, 0.02218840830028057, 0.028214106336236, 0.07530449330806732, -0.06788210570812225, 0.029971685260534286, -0.0003950464306399226, -0.09768010675907135, 0.10671830922365189, 0.0356...
-0.007335
# MQTT Broker Spacelift requires an MQTT broker for worker communication. There are currently two supported broker types: - [AWS IoT Core](https://aws.amazon.com/iot-core/). Recommended for customers with existing Self-Hosted installation that were setup before the built-in broker became available. - A built-in MQTT br...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/mqtt-broker.md
main
spacelift
[ -0.03518944978713989, -0.010104014538228512, -0.0017852020682767034, 0.07211577892303467, -0.06752216070890427, -0.055619657039642334, -0.04479281231760979, 0.000007891066161391791, -0.0027299108915030956, 0.02725331485271454, -0.043990034610033035, -0.09646657109260559, 0.09411675482988358,...
0.021075
# Encryption Spacelift requires an encryption key to store sensitive information in the Postgres database, as well as to sign tokens used for authenticating requests. Currently there are two options that can be used: - KMS keys when deploying to AWS. - An RSA key when deploying to other environments. !!! warning Please...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/encryption.md
main
spacelift
[ -0.06360635161399841, -0.029290828853845596, 0.008895082399249077, 0.009335123002529144, -0.07246752083301544, 0.04881404712796211, 0.014255485497415066, 0.006556592881679535, 0.049170948565006256, 0.022144369781017303, -0.04103532433509827, -0.010713356547057629, 0.02992219291627407, -0.0...
-0.09291
# Object storage Spacelift requires access to object storage buckets to store certain pieces of data. Currently AWS S3, Google Cloud Storage, Azure Blob Storage and MinIO are supported. The following table explains each of the buckets that are required. For each bucket, we indicate whether they should have versioning e...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/object-storage.md
main
spacelift
[ -0.01460475567728281, -0.026656419038772583, -0.015529545024037361, 0.030460095033049583, -0.016365984454751015, 0.039534591138362885, -0.03928312286734581, -0.04605913162231445, 0.025528449565172195, 0.08325037360191345, 0.004238703288137913, -0.020321514457464218, 0.01902701146900654, -0...
-0.044843
store stack state files. | | `OBJECT\_STORAGE\_BUCKET\_UPLOADS` | Yes | Bucket used to temporarily store files uploaded from the frontend. | | `OBJECT\_STORAGE\_BUCKET\_UPLOADS\_URL` | Yes | The URL of the uploads bucket. This is used to generate a Content Security Policy (CSP) to allow the frontend to upload to this b...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/object-storage.md
main
spacelift
[ -0.05557268485426903, -0.012849269434809685, -0.03267807140946388, 0.03875720873475075, 0.05532025918364525, -0.01198043953627348, -0.016531119123101234, 0.004783675540238619, 0.04145902022719383, 0.05278494954109192, 0.038459088653326035, 0.004834918305277824, 0.07165629416704178, -0.0519...
0.043718
# Message queues Spacelift uses a number of message queues to support asynchronous processing. We support two options for message queues: AWS SQS, or a built-in message broker that uses your Postgres database. For new installations we suggest using the Postgres message broker. The main exception to this is if you want ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/message-queues.md
main
spacelift
[ -0.053432587534189224, -0.058523453772068024, -0.002211326966062188, 0.09228525310754776, -0.10780903697013855, -0.07534150034189224, 0.019717587158083916, -0.029349666088819504, 0.03942975401878357, 0.02982005663216114, -0.019450446590781212, -0.039733897894620895, 0.010851491242647171, -...
0.032833
queue should have its redrive policy configured to send messages to the "Deadletter queue (FIFO)". - All other queues should use the "Deadletter queue". ### IoT Core topic rule In order to allow messages sent from Spacelift workers to be processed by the backend services, an IoT Core topic rule needs to be created to p...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/message-queues.md
main
spacelift
[ -0.05599992722272873, -0.055579911917448044, 0.022111257538199425, 0.06287918984889984, -0.02601834014058113, -0.08833041042089462, 0.08173028379678726, -0.07472191751003265, 0.03776739910244942, 0.10398560017347336, -0.03342340886592865, -0.0846053957939148, 0.07100088894367218, 0.0210949...
0.041508
# Usage reporting Spacelift supports three methods for reporting usage: automatic, manual, and via script. Please choose the method that best suits your environment and operational requirements to ensure timely and accurate reporting. ## Automatic \*\*Best for\*\*: Standard deployments with internet access. The easiest...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/usage-reporting.md
main
spacelift
[ -0.020610017701983452, -0.002318674698472023, -0.06882965564727783, 0.04768609628081322, -0.0351283885538578, -0.032786816358566284, 0.021812349557876587, 0.06778878718614578, -0.009716294705867767, 0.031239954754710197, -0.04166095331311226, -0.03315487876534462, 0.010846336372196674, -0....
0.064855
# Telemetry The Spacelift backend services emit telemetry data that can be collected and visualised using a variety of tools. This document describes how to configure Spacelift to emit those data. ## Configuration guides For step-by-step instructions on setting up telemetry collection for your Spacelift installation in...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/telemetry.md
main
spacelift
[ -0.04525597766041756, -0.024474799633026123, 0.02240571193397045, -0.029134193435311317, -0.10715623944997787, -0.0316782183945179, -0.009917423129081726, 0.014662283472716808, 0.02848898246884346, 0.02162942849099636, 0.008074468933045864, -0.0839385837316513, -0.021458493545651436, -0.04...
0.114388
# General configuration This page lists the basic configuration options available for running the Spacelift backend services. It contains a command reference, and then separate sections for various configuration options grouped by functionality. ## Command reference The Spacelift backend services are distributed as a c...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/general-configuration.md
main
spacelift
[ -0.049526527523994446, -0.03870066627860069, -0.06682145595550537, -0.017081666737794876, -0.09696950763463974, -0.03200193867087364, -0.04294218495488167, 0.020922278985381126, -0.04289315640926361, 0.0017084606224671006, 0.007275727577507496, 0.0010886922245845199, 0.05154624581336975, -...
0.084341
into. Defaults to `aws`. | | `AWS\_REGION` | Yes | The region you are deploying Spacelift into. | | `AWS\_DEFAULT\_REGION` | Yes | Set to the same value as `AWS\_REGION`. | | `AWS\_SECONDARY\_REGION` | No | The failover region to use when configuring disaster recovery. | ### Google Cloud We use the Google Cloud Go SDK ...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/reference-architecture/reference/general-configuration.md
main
spacelift
[ -0.007273409515619278, -0.031780872493982315, 0.06791510432958603, -0.08804792910814285, -0.0740918442606926, 0.006105750799179077, 0.030413955450057983, 0.01121027022600174, 0.00691000884398818, 0.03196660801768303, -0.009886343032121658, -0.04993779584765434, 0.07094322144985199, -0.0392...
-0.122009
# PostgreSQL Version Upgrades Starting with Self-Hosted v4.0.0, you can configure the PostgreSQL engine version for CloudFormation-based installations using the `postgres\_engine\_version` parameter in your configuration file. This guide explains how to safely upgrade your database version and what to expect during the...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/postgresql-version-upgrade.md
main
spacelift
[ 0.047294750809669495, -0.026403745636343956, 0.024174300953745842, -0.03800014406442642, -0.05627773329615593, -0.0024131436366587877, -0.11017207056283951, -0.10734155774116516, -0.02238551899790764, 0.05655409023165703, -0.028002185747027397, -0.00013283209409564734, -0.014645025134086609,...
-0.087125
``` The installer will detect the version change and apply the upgrade. This is when the 10-30 minute downtime occurs. ### 3. Restart Spacelift Services Re-enable all Spacelift services: ```bash ./start-stop-services.sh -e true -c config.json ``` The services will start back up and reconnect to the upgraded database. !...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/postgresql-version-upgrade.md
main
spacelift
[ 0.018597625195980072, -0.0991351306438446, 0.026576489210128784, -0.08801042288541794, -0.017223211005330086, 0.014585528522729874, -0.04598128795623779, -0.08740609139204025, -0.06342718750238419, 0.02760951593518257, 0.017146127298474312, 0.050199463963508606, -0.01874435506761074, 0.008...
-0.10538
# Slack integration setup If you want to use the [Slack integration](https://docs.spacelift.io/integrations/chatops/slack) in your self-hosting instance, you need to create your own Slack app and add its details to the \_config.json\_ file before running the self-hosting installer. This section explains how to do that,...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/slack-integration-setup.md
main
spacelift
[ -0.04680411517620087, -0.08953148871660233, 0.027398763224482536, -0.013655473478138447, -0.05597536638379097, -0.06878959387540817, -0.042974118143320084, 0.07918374240398407, 0.015456471592187881, 0.08394647389650345, 0.016287831589579582, -0.07183876633644104, -0.02983063831925392, 0.08...
0.068583
"client\_secret": "", "signing\_secret": "" } } ``` Once you have populated your configuration, just run the installer as described in the [installation guide](./install.md#running-the-installer). After the installation script finishes. You can now go to your self-hosted Spacelift instance, to Settings -> Slack and ins...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/slack-integration-setup.md
main
spacelift
[ -0.06521346420049667, -0.04940207675099373, 0.05201153829693794, -0.03330308571457863, -0.032934147864580154, 0.018656650558114052, -0.03269818425178528, 0.08040283620357513, -0.007864121347665787, 0.06407837569713593, 0.01131345983594656, -0.049470726400613785, 0.04049352928996086, 0.0460...
0.023335
# Installation Guide This guide contains instructions on installing a self-hosted copy of Spacelift in an AWS account you control. ## Pre-requisites Before proceeding with the installation, you need to satisfy the following pre-requisites: - You need access to an AWS account you wish to install Spacelift into. - You ne...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/install.md
main
spacelift
[ -0.08029437810182571, -0.10194145143032074, -0.007932860404253006, -0.041917476803064346, -0.08909760415554047, -0.006500652059912682, -0.03825775161385536, 0.02367600053548813, 0.036446720361709595, 0.041168369352817535, 0.006458769552409649, -0.0834043100476265, 0.02329160086810589, -0.0...
-0.060909
wish to install self-hosting in has at least 3 EIPs available. The [default quota](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-limit) per region in an AWS account only allows 5 EIPs to be created, so you may need to choose another region or ask for an incr...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/install.md
main
spacelift
[ 0.04703313857316971, -0.03296937420964241, 0.06456904113292694, -0.03889753669500351, -0.01668081246316433, 0.0021781567484140396, 0.013049047440290451, 0.018904240801930428, 0.10047396272420883, 0.11307260394096375, -0.0467124804854393, -0.05451102927327156, -0.026439044624567032, -0.0184...
0.006562
your Spacelift installation. - `sso\_config.sso\_type` - the type of SSO you wish to use. Valid values are `OIDC` and `SAML`. - `sso\_config.oidc\_args` - if `sso\_type` is `OIDC`, all fields are mandatory: - `client\_id` - the OIDC client ID. - `client\_credentials` - the OIDC client secret. - `identity\_provider\_hos...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/install.md
main
spacelift
[ -0.09087634086608887, -0.028283651918172836, -0.023671012371778488, 0.0381215438246727, -0.07679179310798645, -0.04816646873950958, 0.05593493580818176, 0.005665885284543037, 0.012986156158149242, -0.03394072875380516, -0.001498518860898912, -0.07396803051233292, -0.0027938662096858025, 0....
0.024485
load balancer is launched. It can be set to either `public`(default) or `private`. ##### Database There are two ways to configure the database: either let Spacelift create the RDS cluster for you or you can create and manage it yourself, and just provide the SecretsManager secret ARN to the installer. The possible conf...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/install.md
main
spacelift
[ -0.04103448614478111, -0.04048290476202965, -0.0423465333878994, -0.0136914923787117, -0.054720424115657806, 0.03472840413451195, 0.006871963385492563, -0.03757032752037048, -0.017331071197986603, 0.05249117314815521, -0.011084375903010368, -0.003080883761867881, 0.034291014075279236, -0.0...
-0.018259
Spacelift installation. It is accessible via the CloudWatch UI. Additionally, we can also create a few preconfigured alerts for you. You can configure the following options for the CloudWatch alarms: ```json "alerting": { "sns\_topic\_arn": "" } ``` If an SNS topic ARN is configured, we'll create an SNS subscription fo...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/install.md
main
spacelift
[ -0.030371474102139473, -0.05080975964665413, -0.01861877366900444, 0.020848101004958153, 0.06114674359560013, 0.038690462708473206, 0.013862434774637222, -0.07007595896720886, 0.10530935972929001, 0.0286784078925848, -0.06981533765792847, -0.016760723665356636, 0.03318332880735397, -0.0053...
0.034239
you could run the following command: ```shell cat metadata.xml| jq -R -s '.' ``` You would then enter the escaped string into your \_config.json\_ file: ```json "saml\_args": { "metadata": "xml version=\"1.0\" encoding=\"utf-8\"?"] ``` The `-c` flag is optional, it defaults to `config.json` if not specified. When the i...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/install.md
main
spacelift
[ -0.01485421508550644, -0.026341741904616356, -0.012507837265729904, -0.05117189511656761, -0.02409408800303936, -0.0005103962030261755, 0.012565044686198235, 0.0006607416435144842, 0.0677843913435936, 0.06974933296442032, 0.018720578402280807, -0.06236804649233818, 0.04105092212557793, -0....
-0.057338
-h] ``` Flags: - `-c `: path to the config file (default: `config.json`) - `-f`: force uninstallation, do not prompt for confirmation - `-n`: do not retain S3 buckets, database or KMS keys. complete uninstallation. - `-h`: show help For example: ```shell ./uninstall.sh ```
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/install.md
main
spacelift
[ 0.010461459867656231, 0.0713442713022232, -0.03531046211719513, -0.08943244069814682, 0.11116617172956467, 0.007770128548145294, 0.024011941626667976, -0.019050361588597298, 0.018125809729099274, 0.028643576428294182, 0.06565004587173462, -0.02324587106704712, 0.035286154597997665, -0.0067...
0.026334
# Advanced Installations ## Custom VPC In certain situations you may want to have full control of the network that Spacelift runs in, and the default VPC and security groups created by Spacelift don't fit your circumstances. In these situations, you can create your own networking components and supply them during the i...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/advanced-installations.md
main
spacelift
[ -0.09653711318969727, -0.08833668380975723, -0.041787005960941315, -0.0040054926648736, -0.07241282612085342, 0.06494304537773132, 0.012588204815983772, 0.014585130847990513, -0.008715162053704262, 0.014211405999958515, -0.017627805471420288, -0.036514393985271454, 0.01876629889011383, -0....
-0.047818
FromPort: 1983 ToPort: 1983 IpProtocol: "tcp" SourceSecurityGroupId: {Ref: LoadBalancerSecurityGroup} VpcId: {Ref: VPC} ``` #### Load Balancer The load balancer needs to be able to accept traffic from any clients (e.g. users logging into Spacelift via a browser or using `spacectl`), and also needs to accept incoming we...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/advanced-installations.md
main
spacelift
[ -0.11341176927089691, 0.0773264691233635, -0.06348489224910736, -0.04773559793829918, -0.012001631781458855, 0.020880671218037605, -0.02230483666062355, -0.02171514183282852, 0.08119967579841614, -0.009390359744429588, -0.03106389194726944, -0.10228268802165985, -0.005352157633751631, -0.0...
0.004069
```json { "proxy\_config": { "http\_proxy": "http://my.http.proxy", "https\_proxy": "https://my.https.proxy", "no\_proxy": "safe.domain" } } ``` However if you only need to specify the `HTTPS\_PROXY` environment variable you can use the following configuration: ```json { "proxy\_config": { "http\_proxy": "", "https\_pr...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/advanced-installations.md
main
spacelift
[ -0.08075402677059174, 0.018698321655392647, -0.00576731888577342, -0.05282790586352348, -0.07850044220685959, -0.03795575723052025, 0.0004708488704636693, 0.012887168675661087, 0.033868491649627686, -0.0008361366344615817, -0.03986182436347008, -0.024340344592928886, 0.042774002999067307, ...
-0.051711
substitute `` with your install region): ```shell s3..amazonaws.com,license-manager..amazonaws.com,a3mducvsqca9re-ats.iot..amazonaws.com,logs..amazonaws.com,monitoring..amazonaws.com,sqs..amazonaws.com,xray..amazonaws.com,secretsmanager..amazonaws.com,kms..amazonaws.com,ecr..amazonaws.com,api.ecr..amazonaws.com ``` ###...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/advanced-installations.md
main
spacelift
[ -0.022510455921292305, -0.005626843310892582, -0.12264719605445862, -0.0742751881480217, 0.0487363338470459, 0.006830418948084116, -0.03085589036345482, -0.0538267120718956, 0.04953993856906891, 0.0316711887717247, 0.02306945249438286, -0.08820754289627075, 0.027493005618453026, 0.00528902...
-0.040552
to be created. Also note that each of your Spacelift subnets will also need a route table attached that can be referenced in the endpoint definition: ```yaml S3GatewayEndpoint: Type: AWS::EC2::VPCEndpoint Properties: ServiceName: {Fn::Sub: "com.amazonaws.${AWS::Region}.s3"} VpcEndpointType: Gateway VpcId: {Ref: VPC} Ro...
https://github.com/spacelift-io/user-documentation/blob/main//docs/installing-spacelift/cloudformation/advanced-installations.md
main
spacelift
[ -0.07606600970029831, -0.09611961990594864, -0.08166342228651047, 0.02099032700061798, 0.0001213547438965179, 0.04751867055892944, -0.04200199618935585, -0.0036199288442730904, 0.017116252332925797, 0.022300783544778824, -0.017590409144759178, -0.0709725022315979, 0.015502765774726868, -0....
-0.029308