rename insecure to deprecated
This commit is contained in:
14
.github/workflows/apps.release.yaml
vendored
14
.github/workflows/apps.release.yaml
vendored
@@ -7,7 +7,11 @@ on:
|
||||
tags-ignore:
|
||||
- '**'
|
||||
paths:
|
||||
- 'test/**'
|
||||
- 'stable/**'
|
||||
- 'develop/**'
|
||||
- 'incubator/**'
|
||||
- 'non-free/**'
|
||||
- 'deprecated/**'
|
||||
- '.github/workflows/apps.release.yaml'
|
||||
|
||||
jobs:
|
||||
@@ -38,7 +42,7 @@ jobs:
|
||||
path: catalog
|
||||
- name: Remove if release already exists
|
||||
run: |
|
||||
for train in stable incubator develop non-free insecure
|
||||
for train in stable incubator develop non-free deprecated
|
||||
do
|
||||
for chart in master/${train}/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
@@ -52,7 +56,7 @@ jobs:
|
||||
done
|
||||
- name: fetch dependencies
|
||||
run: |
|
||||
for train in stable incubator develop non-free insecure
|
||||
for train in stable incubator develop non-free deprecated
|
||||
do
|
||||
for chart in master/${train}/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
@@ -64,7 +68,7 @@ jobs:
|
||||
done
|
||||
- name: Add Chart release
|
||||
run: |
|
||||
for train in stable incubator develop non-free insecure
|
||||
for train in stable incubator develop non-free deprecated
|
||||
do
|
||||
for chart in master/${train}/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
@@ -78,7 +82,7 @@ jobs:
|
||||
done
|
||||
- name: Apply SCALE Patches
|
||||
run: |
|
||||
for train in stable incubator develop non-free insecure
|
||||
for train in stable incubator develop non-free deprecated
|
||||
do
|
||||
for chart in catalog/${train}/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
|
||||
34
.github/workflows/apps.test.yaml
vendored
34
.github/workflows/apps.test.yaml
vendored
@@ -21,13 +21,27 @@ on:
|
||||
- '!incubator/app-readme.md'
|
||||
- '!incubator/app-readme.md.gotmpl'
|
||||
- '!incubator/docs/*'
|
||||
- 'dev/**'
|
||||
- '!dev/*.md'
|
||||
- '!dev/README.md'
|
||||
- '!dev/README.md.gotmpl'
|
||||
- '!dev/app-readme.md'
|
||||
- '!dev/app-readme.md.gotmpl'
|
||||
- '!dev/docs/*'
|
||||
- 'develop/**'
|
||||
- '!develop/*.md'
|
||||
- '!develop/README.md'
|
||||
- '!develop/README.md.gotmpl'
|
||||
- '!develop/app-readme.md'
|
||||
- '!develop/app-readme.md.gotmpl'
|
||||
- '!develop/docs/*'
|
||||
- 'non-free/**'
|
||||
- '!non-free/*.md'
|
||||
- '!non-free/README.md'
|
||||
- '!non-free/README.md.gotmpl'
|
||||
- '!non-free/app-readme.md'
|
||||
- '!non-free/app-readme.md.gotmpl'
|
||||
- '!non-free/docs/*'
|
||||
- 'deprecated/**'
|
||||
- '!deprecated/*.md'
|
||||
- '!deprecated/README.md'
|
||||
- '!deprecated/README.md.gotmpl'
|
||||
- '!deprecated/app-readme.md'
|
||||
- '!deprecated/app-readme.md.gotmpl'
|
||||
- '!deprecated/docs/*'
|
||||
- '.github/workflows/apps.test.yaml'
|
||||
- '.github/ct-install.yaml'
|
||||
- '.github/ct-lint.yaml'
|
||||
@@ -50,7 +64,7 @@ jobs:
|
||||
- 'stable/**'
|
||||
- 'incubator/**'
|
||||
- 'develop/**'
|
||||
- 'insecure/**'
|
||||
- 'deprecated/**'
|
||||
- 'non-free/**'
|
||||
- run: echo '${{ toJson(steps.filter.outputs) }}' > changes.json
|
||||
- id: reduce
|
||||
@@ -78,8 +92,8 @@ jobs:
|
||||
train="stable"
|
||||
elif test -f "./incubator/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="incubator"
|
||||
elif test -f "./insecure/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="insecure"
|
||||
elif test -f "./deprecated/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="deprecated"
|
||||
elif test -f "./non-free/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="non-free"
|
||||
else
|
||||
|
||||
2
.github/workflows/docs.copy.yaml
vendored
2
.github/workflows/docs.copy.yaml
vendored
@@ -59,7 +59,7 @@ jobs:
|
||||
|
||||
- name: Copy Apps readme to website
|
||||
run: |
|
||||
for train in stable incubator develop non-free insecure; do
|
||||
for train in stable incubator develop non-free deprecated; do
|
||||
for chart in ${train}/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
chartname=$(basename ${chart})
|
||||
|
||||
@@ -18,7 +18,7 @@ readme_template="${repository}/.tools/templates/docs/README.md.gotmpl"
|
||||
config_template="${repository}/.tools/templates/docs/CONFIG.md.gotmpl"
|
||||
root="${repository}"
|
||||
|
||||
for train in stable incubator develop non-free insecure; do
|
||||
for train in stable incubator develop non-free deprecated; do
|
||||
for chart in ${train}/*; do
|
||||
if [ -d "${chart}" ]; then
|
||||
maxchartversion=$(cat ${chart}/Chart.yaml | grep "^version: " | awk -F" " '{ print $2 }')
|
||||
|
||||
Reference in New Issue
Block a user