Add possibility to disable TLS in VSHNPostgreSQL #2190
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
COMPONENT_NAME: appcat | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
command: | |
- lint_jsonnet | |
- lint_yaml | |
- lint_adoc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ${{ matrix.command }} | |
run: make ${{ matrix.command }} | |
golden: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
instance: | |
- vshn-cloud | |
- vshn-managed | |
- service-cluster | |
- control-plane | |
- defaults | |
- dev | |
defaults: | |
run: | |
working-directory: ${{ env.COMPONENT_NAME }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ env.COMPONENT_NAME }} | |
- name: Golden diff | |
run: make golden-diff -e instance=${{ matrix.instance }} |