#atlantis (2023-04)

atlantis

Discuss the Atlantis (<http://runatlantis.iorunatlantis.io>)

**Archive: ** https://archive.sweetops.com/atlantis/

2023-04-10

Release notes from atlantis avatar
Release notes from atlantis
10:48:36 PM

v0.23.4 What’s Changed chore(changelog): Add v0.23.3 by @jamengual in <a class=”issue-link js-issue-link” data-error-text=”Failed to load title” data-id=”1633026016” data-permission-text=”Title is private” data-url=”https://github.com/runatlantis/atlantis/issues/3249“…

Release v0.23.4 · runatlantis/atlantisattachment image

What’s Changed

chore(changelog): Add v0.23.3 by @jamengual in #3249 fix(deps): update module github.com/go-playground/validator/v10 to v10.12.0 in go.mod by @renovate in #3251 docs: updating api-e…

jamengual - Overview

SRE, doing SRE things. jamengual has 22 repositories available. Follow their code on GitHub.

2023-04-17

Release notes from atlantis avatar
Release notes from atlantis
07:38:39 PM

v0.23.5 What’s Changed fix(changelog): no need to update changelog by @nitrocode in <a class=”issue-link js-issue-link” data-error-text=”Failed to load title” data-id=”1661493786” data-permission-text=”Title is private”…

Release v0.23.5 · runatlantis/atlantisattachment image

What’s Changed

fix(changelog): no need to update changelog by @nitrocode in #3305 fix(atlantis-image): rm redundant dev push, correct authors by @nitrocode in #3306 chore(deps): update golang dock…

Release notes from atlantis avatar
Release notes from atlantis
09:38:41 PM

v0.23.5 What’s Changed fix(changelog): no need to update changelog by @nitrocode in <a class=”issue-link js-issue-link” data-error-text=”Failed to load title” data-id=”1661493786” data-permission-text=”Title is private”…

Release v0.23.5 · runatlantis/atlantisattachment image

What’s Changed

fix(changelog): no need to update changelog by @nitrocode in #3305 fix(atlantis-image): rm redundant dev push, correct authors by @nitrocode in #3306 chore(deps): update golang dock…

2023-04-20

setheryops avatar
setheryops

I need help with server side repo config please. I installed with helm/kustomize so im working with a values.yaml and then an atlantis.yaml file to set up my repos. I get this error if i try to run plan: repo config not allowed to set 'apply_requirements' key: server-side config needs 'allowed_overrides: [apply_requirements]

In my values.yaml file I have the following:

## Use Server Side Repo Config,
## ref: <https://www.runatlantis.io/docs/server-side-repo-config.html>
## Example default configuration
repoConfig: |
#  ---
repos:
id: /.*/
    workflow: default
    allowed_overrides: [apply_requirements]
    allow_custom_workflows: false

Then in my Atlantis.yaml file I have this:

version: 3
projects:
&template
    dir: template
    autoplan:
      enabled: false
    apply_requirements: [mergeable, approved, undiverged]
<<: *template
    dir: service/thing1
    workspace: dev
<<: *template
    dir: service/thing1
    workspace: stage
<<: *template
    dir: service/thing1
    workspace: prod

What am I missing here?

setheryops avatar
setheryops

Figured it out…stupid yaml spacing…

repoConfig: |
 ---
 repos:
 - id: /.*/
   workflow: default
   allowed_overrides: [apply_requirements]
   apply_requirements: [approved]

2023-04-24

2023-04-27

setheryops avatar
setheryops

Does anyone have an example of how you pull aws secrets into your values.yaml file if you have deployed with helm to eks? This is all I can find and theres nothing in the docs…not helpful at all. Im wanting to have my values file pull the github webtoken and secret from my AWS Secrets.

# To reference an already existing Secret object with AWS credentials
# awsSecretName: 'mysecretwithawscreds'
jose.amengual avatar
jose.amengual

I will say, you might get more answers in the Atlantis slack

setheryops avatar
setheryops

OK…Ill ask you there too.

jose.amengual avatar
jose.amengual

no me because I do not use K8s but other people do

venkata.mutyala avatar
venkata.mutyala

This was mentioned in this weeks recent office hours: https://github.com/helmfile/vals

It looks like a tool that would help for your use case.

helmfile/vals

Helm-like configuration values loader with support for various sources

    keyboard_arrow_up