This PR contains the following updates: | Package | Update | Change | |---|---|---| | [semaphoreui/semaphore](https://togithub.com/semaphoreui/semaphore) | patch | `v2.10.2` -> `v2.10.7` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>semaphoreui/semaphore (semaphoreui/semaphore)</summary> ### [`v2.10.7`](https://togithub.com/semaphoreui/semaphore/releases/tag/v2.10.7) [Compare Source](https://togithub.com/semaphoreui/semaphore/compare/v2.10.2...v2.10.7) [](https://semaphoreui.com/install/docker/2\_10\_7/) [](https://www.patreon.com/semaphoreui) #### Features - Added support for Terraform code, OpenTofu code and Bash scripts.  - Added usage examples. - Added DEBUG Docker image for remote debugging from Goland. #### Bugfixes - Fixed infinite "Waiting" status. - Reduced size of Docker image. - Fixed issue with authentication on the server with login/password ([https://github.com/semaphoreui/semaphore/issues/2098](https://togithub.com/semaphoreui/semaphore/issues/2098)) - Fixed `web_host` option usage in Docker image. - Docker Image: Fixed overriding config file options by empty `SEMAPHORE_ACCESS_KEY_ENCRYPTION` and `SEMAPHORE_WEB_ROOT` environment variables. - Web interface: Removed predefined variables from Environment form. - Fixed bug with supporting HTTP protocol. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
79 lines
2.2 KiB
YAML
79 lines
2.2 KiB
YAML
image:
|
|
repository: semaphoreui/semaphore
|
|
tag: v2.10.7@sha256:2d7235039deac83270a5cab56c7e6352b158346f675f43aa1c730c977db0276c
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 3000
|
|
protocol: http
|
|
targetPort: 3000
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
# DB
|
|
SEMAPHORE_DB_DIALECT: postgres
|
|
SEMAPHORE_DB_USER: "{{ .Values.cnpg.main.user }}"
|
|
SEMAPHORE_DB: "{{ .Values.cnpg.main.database }}"
|
|
SEMAPHORE_DB_PORT: 5432
|
|
SEMAPHORE_DB_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
SEMAPHORE_DB_PASS:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
SEMAPHORE_ACCESS_KEY_ENCRYPTION:
|
|
secretKeyRef:
|
|
name: semaphore-secrets
|
|
key: SEMAPHORE_ACCESS_KEY_ENCRYPTION
|
|
# set paths to /data
|
|
SEMAPHORE_PLAYBOOK_PATH: "{{.Values.persistence.data.mountPath }}"
|
|
SEMAPHORE_ADMIN: admin
|
|
SEMAPHORE_ADMIN_NAME: admin
|
|
SEMAPHORE_ADMIN_PASSWORD: changeme
|
|
SEMAPHORE_ADMIN_EMAIL: admin@localhost
|
|
# LDAP
|
|
# no | yes
|
|
SEMAPHORE_LDAP_ACTIVATED: "no"
|
|
# SEMAPHORE_LDAP_HOST: dc01.local.example.com
|
|
# SEMAPHORE_LDAP_PORT: '636'
|
|
# no | yes
|
|
SEMAPHORE_LDAP_NEEDTLS: "no"
|
|
# SEMAPHORE_LDAP_DN_BIND: 'uid=bind_user,cn=users,cn=accounts,dc=local,dc=shiftsystems,dc=net'
|
|
# SEMAPHORE_LDAP_PASSWORD: 'ldap_bind_account_password'
|
|
# SEMAPHORE_LDAP_DN_SEARCH: 'dc=local,dc=example,dc=com'
|
|
# SEMAPHORE_LDAP_SEARCH_FILTER: "(\u0026(uid=%s)(memberOf=cn=ipausers,cn=groups,cn=accounts,dc=local,dc=example,dc=com))"
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /etc/semaphore
|
|
data:
|
|
enabled: true
|
|
mountPath: /data
|
|
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: semaphore
|
|
database: semaphore
|
|
|
|
portal:
|
|
open:
|
|
enabled: true
|