Skip to content

misc: sorted the devtron-images.txt.source file and added utility images #6574

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions beta-releasenotes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Enhancements
- feat: added support for relabelings in servicemonitor (#6562)
## Bugs
- fix: deployment with specific trigger for rollout chart (#6571)
- fix: rest handler missing return statements (#6545)
- fix: chart name fixed in chart reference table (#6543)
- fix: error pg.ErrNoRow on base deployment template update (#6533)
## Others
- chore: release target installations scripts (#6529)
- sync: Main sync develop (#6565)
- misc: append response time in audit log (#6566)
- misc: Update create-release.yml (#6564)
- misc: updated ucid-cm and added prehook (#6557)
- chore: update auto-label.yml (#6372)
- misc: Approval bypass v2 oss (#6510)
- chore: pipeline timeline alter sql (#6541)
- sync: vendor update (#6540)
2 changes: 1 addition & 1 deletion charts/devtron/devtron-bom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ security:
tag: 4.3.6
# Values for notifier integration
notifier:
image: "notifier:56798239-372-32072"
image: "notifier:99e2f3cd-372-32893"
healthPort: 3000
minio:
image: "minio:RELEASE.2021-02-14T04-01-33Z"
Expand Down
6 changes: 2 additions & 4 deletions charts/devtron/templates/app-sync-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ spec:
image: {{ include "common.image" (dict "component" $.Values.components.chartSync "global" $.Values.global ) }}
{{- include "common.containerSecurityContext" (dict "containerSecurityContext" $.Values.components.chartSync.containerSecurityContext "global" $.Values.global) | indent 8 }}
env:
- name: PG_ADDR
value: postgresql-postgresql.devtroncd
- name: PG_DATABASE
value: orchestrator
- name: PG_USER
value: postgres
envFrom:
- configMapRef:
name: app-sync-cm
- secretRef:
name: devtron-secret
- configMapRef:
Expand Down Expand Up @@ -80,8 +80,6 @@ spec:
image: {{ include "common.image" (dict "component" $.Values.components.chartSync "global" $.Values.global ) }}
{{- include "common.containerSecurityContext" (dict "containerSecurityContext" $.Values.components.chartSync.containerSecurityContext "global" $.Values.global) | indent 12 }}
env:
- name: PG_ADDR
value: postgresql-postgresql.devtroncd
- name: PG_DATABASE
value: orchestrator
- name: PG_USER
Expand Down
1 change: 1 addition & 0 deletions charts/devtron/templates/kubelink.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,5 @@ spec:
app: kubelink
sessionAffinity: None
type: ClusterIP
clusterIP: None
{{- end }}
12 changes: 6 additions & 6 deletions charts/devtron/templates/migrator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
- name: PG_USER
value: postgres
- name: PG_ADDR
value: postgresql-postgresql.devtroncd
value: {{ .configs.PG_ADDR | default "postgresql-postgresql.devtroncd" }}
- name: DB_PORT
value: "5432"
- name: PG_DATABASE
Expand Down Expand Up @@ -80,7 +80,7 @@ spec:
- name: DB_USER_NAME
value: postgres
- name: DB_HOST
value: postgresql-postgresql.devtroncd
value: {{ .configs.PG_ADDR | default "postgresql-postgresql.devtroncd" }}
- name: DB_PORT
value: "5432"
- name: DB_NAME
Expand Down Expand Up @@ -186,7 +186,7 @@ spec:
- name: DB_USER_NAME
value: postgres
- name: DB_HOST
value: postgresql-postgresql.devtroncd
value: {{ .configs.PG_ADDR | default "postgresql-postgresql.devtroncd" }}
- name: DB_PORT
value: "5432"
- name: DB_NAME
Expand Down Expand Up @@ -273,7 +273,7 @@ spec:
- name: DB_USER_NAME
value: postgres
- name: DB_HOST
value: postgresql-postgresql.devtroncd
value: {{ .configs.PG_ADDR | default "postgresql-postgresql.devtroncd" }}
- name: DB_PORT
value: "5432"
- name: DB_NAME
Expand Down Expand Up @@ -355,7 +355,7 @@ spec:
- name: DB_USER_NAME
value: postgres
- name: DB_HOST
value: postgresql-postgresql.devtroncd
value: {{ .configs.PG_ADDR | default "postgresql-postgresql.devtroncd" }}
- name: DB_PORT
value: "5432"
- name: DB_NAME
Expand Down Expand Up @@ -430,7 +430,7 @@ spec:
- name: DB_USER_NAME
value: postgres
- name: DB_HOST
value: postgresql-postgresql.devtroncd
value: {{ .configs.PG_ADDR | default "postgresql-postgresql.devtroncd" }}
- name: DB_PORT
value: "5432"
- name: DB_NAME
Expand Down
6 changes: 6 additions & 0 deletions charts/devtron/templates/minio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ data:
createBucket devtron-ci-log none false true
createBucket devtron-ci-cache none false true
{{- end }}
{{- if ne ($.Values.minio.retention | int) 0 }}
${MC} ilm add myminio/devtron-ci-cache --expiry-days {{ $.Values.minio.retention }}
${MC} ilm ls myminio/devtron-ci-cache
{{- else }}
echo "No Lifecycle Policy Specified"
{{- end }}
{{- end }}
---
apiVersion: rbac.authorization.k8s.io/v1
Expand Down
8 changes: 6 additions & 2 deletions charts/devtron/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ components:
kubectlImage: "kubectl:latest"
duplicateChartImage: devtron-utils:dup-chart-repo-v1.1.0
entMigratorImage: "devtron-utils:geni-v1.1.4"
configs:
PG_ADDR: postgresql-postgresql.devtroncd
envVars:
devtron:
DB_NAME: "orchestrator"
Expand All @@ -259,7 +261,8 @@ components:
registry: ""
image: chart-sync:c49b4aa5-836-32103
schedule: "0 19 * * *"
extraConfigs: {}
extraConfigs:
PG_ADDR: postgresql-postgresql.devtroncd
podSecurityContext:
fsGroup: 1001
runAsGroup: 1001
Expand Down Expand Up @@ -430,7 +433,7 @@ security:
notifier:
enabled: false
imagePullPolicy: IfNotPresent
image: "notifier:56798239-372-32072"
image: "notifier:99e2f3cd-372-32893"
configs:
CD_ENVIRONMENT: PROD
DB: orchestrator
Expand All @@ -446,6 +449,7 @@ notifier:
# Set enable to true if you want to use minio for storing cache and logs
minio:
enabled: false
retention: 30
replicaCount: 1
image: "minio:RELEASE.2021-02-14T04-01-33Z"
imagePullPolicy: IfNotPresent
Expand Down
27 changes: 16 additions & 11 deletions devtron-images.txt.source
Original file line number Diff line number Diff line change
@@ -1,37 +1,42 @@
quay.io/devtron/image-scanner:c49b4aa5-141-32102
quay.io/devtron/inception:473deaa4-185-21582
quay.io/devtron/hyperion:e4fc95a9-280-32767
public.ecr.aws/docker/library/redis:7.0.5-alpine
quay.io/argoproj/argocd:v2.5.2
quay.io/argoproj/workflow-controller:v3.4.3
quay.io/devtron/alpine-k8s-utils:latest
quay.io/devtron/alpine-netshoot:latest
quay.io/devtron/authenticator:e414faff-393-13273
quay.io/devtron/bats:v1.4.1
quay.io/devtron/busybox:1.31.1
quay.io/devtron/centos-k8s-utils:latest
quay.io/devtron/chart-sync:c49b4aa5-836-32103
quay.io/devtron/ci-runner:c49b4aa5-138-32101
quay.io/devtron/clair:4.3.6
quay.io/devtron/curl:7.73.0
quay.io/devtron/dashboard:0fc42ac3-690-32105
quay.io/devtron/devtron-utils:dup-chart-repo-v1.1.0
quay.io/devtron/devtron:e4fc95a9-434-32763
quay.io/devtron/ci-runner:c49b4aa5-138-32101
quay.io/devtron/dex:v2.30.2
quay.io/devtron/git-sensor:c49b4aa5-200-32099
quay.io/devtron/grafana:7.3.1
quay.io/devtron/hyperion:e4fc95a9-280-32767
quay.io/devtron/image-scanner:c49b4aa5-141-32102
quay.io/devtron/inception:473deaa4-185-21582
quay.io/devtron/k8s-sidecar:1.1.0
quay.io/devtron/k8s-utils:tutum-curl
quay.io/devtron/k9s-k8s-utils:latest
quay.io/devtron/kubectl:latest
quay.io/devtron/kubelink:c49b4aa5-564-32098
quay.io/devtron/kubewatch:c49b4aa5-419-32097
quay.io/devtron/lens:c49b4aa5-333-32100
quay.io/devtron/migrator:v4.16.2
quay.io/devtron/minideb:latest
quay.io/devtron/minio-mc:RELEASE.2021-02-14T04-28-06Z
quay.io/devtron/minio:RELEASE.2021-02-14T04-01-33Z
quay.io/devtron/nats-box
quay.io/devtron/nats-server-config-reloader:0.6.2
quay.io/devtron/nats:2.9.3-alpine
quay.io/devtron/notifier:56798239-372-32072
quay.io/devtron/notifier:99e2f3cd-372-32893
quay.io/devtron/postgres:14.9
quay.io/devtron/postgres_exporter:v0.10.1
quay.io/devtron/prometheus-nats-exporter:0.9.0
quay.io/devtron/minio:RELEASE.2021-02-14T04-01-33Z
quay.io/devtron/clair:4.3.6
quay.io/devtron/postgres_exporter:v0.4.7
quay.io/devtron/minio-mc:RELEASE.2021-02-14T04-28-06Z
quay.io/devtron/minideb:latest
quay.io/devtron/postgres:14.9
quay.io/devtron/prometheus-nats-exporter:0.9.0
quay.io/devtron/ubuntu-k8s-utils:latest
6 changes: 0 additions & 6 deletions releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +0,0 @@
## v1.5.1

## Bugs
- fix: stack manager page break on server api giving internal server error (#6556)