Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
aimee-889 committed Nov 5, 2024
2 parents 8bbad5a + 349e5a9 commit 03d2e93
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ jobs:

select_helm_version_generation_and_image_tag_generation:
if: ${{ github.event_name == 'push' && !startsWith(github.ref_name,'dependabot/') }}
needs:
- scan_helm
runs-on: ubuntu-latest
runs-on: ubuntu-latest
outputs:
SELECT_HELM_VERION_GENERATION: ${{ steps.select_generation.outputs.SELECT_HELM_VERION_GENERATION }}
SELECT_IMAGE_TAG_GENERATION: ${{ steps.select_generation.outputs.SELECT_IMAGE_TAG_GENERATION }}
Expand Down Expand Up @@ -60,6 +58,15 @@ jobs:
run: |
sleep 1m
wait_for_helm_chart_to_get_published:
needs:
- release_helm
runs-on: ubuntu-latest
steps:
- shell: bash
run: |
sleep 1m
branch_meta:
if: ${{ github.event_name == 'push' && !startsWith(github.ref_name,'dependabot/') }}
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/get-branch-meta.yml@3
Expand Down
22 changes: 11 additions & 11 deletions charts/dbildungs-iam-ldap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ resources:
cpu: 2
memory: 4G
requests:
cpu: 200m
memory: 200Mi
cpu: 100m
memory: 100Mi

# enabling other features makes it so that ldap container fails with not enough permissions
containerSecurityContext:
Expand Down Expand Up @@ -294,11 +294,11 @@ metrics:
containerPort: 9330
resources:
limits:
cpu: 500m
memory: 1Gi
cpu: 300m
memory: 256Mi
requests:
cpu: 200m
memory: 500Mi
cpu: 100m
memory: 64Mi

service:
type: ClusterIP
Expand Down Expand Up @@ -348,8 +348,8 @@ initTLSSecret:
cpu: 500m
memory: 500Mi
requests:
cpu: 200m
memory: 200Mi
cpu: 100m
memory: 100Mi

volumePermissions:
enabled: true
Expand All @@ -361,11 +361,11 @@ volumePermissions:
command: [ 'sh', '-c', 'chmod -R g+rwX /bitnami' ]
resources:
limits:
cpu: 500m
memory: 500Mi
requests:
cpu: 200m
memory: 200Mi
requests:
cpu: 100m
memory: 100Mi

sidecars: {}

Expand Down

0 comments on commit 03d2e93

Please sign in to comment.