Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
registry-server: ghcr.io
registry-username: ${{ github.actor }}
image: ${{ github.repository }}
version: 0.7.1
version: 0.8.0
secrets:
pull-request-token: ${{ secrets.GH_ORG_PAT }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ The Engineering Platform package has the following configurable properties.
| `metrics_server` | `{}` | Configuration for the Metrics Server package. |
| `namespace_setup` | `{}` | Configuration for the Namespace Setup package. |
| `secretgen_controller` | `{}` | Configuration for the Secretgen Controller package. |
| `tekton.catalog` | `{}` | Configuration for the Tekton Catalog package. |
| `tekton.pipelines` | `{}` | Configuration for the Tekton Pipelines package. |

</details>
Expand Down
2 changes: 1 addition & 1 deletion package/config/buildpacks-catalog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
packageRef:
refName: buildpacks-catalog.packages.kadras.io
versionSelection:
constraints: 0.5.1
constraints: 0.6.0
prereleases: {}
values:
- secretRef:
Expand Down
3 changes: 2 additions & 1 deletion package/config/cartographer-blueprints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ metadata:
kapp.k14s.io/change-group: cartographer-blueprints
kapp.k14s.io/change-rule.cartographer: upsert after upserting cartographer
kapp.k14s.io/change-rule.secretgen-controller: upsert after upserting secretgen-controller
kapp.k14s.io/change-rule.tekton-catalog: upsert after upserting tekton-catalog
kapp.k14s.io/change-rule.service-account: delete before deleting serviceaccount
spec:
serviceAccountName: kadras-install-sa
packageRef:
refName: cartographer-blueprints.packages.kadras.io
versionSelection:
constraints: 0.4.0
constraints: 0.5.0
prereleases: {}
values:
- secretRef:
Expand Down
2 changes: 1 addition & 1 deletion package/config/cartographer-supply-chains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
packageRef:
refName: cartographer-supply-chains.packages.kadras.io
versionSelection:
constraints: 0.4.0
constraints: 0.5.0
prereleases: {}
values:
- secretRef:
Expand Down
36 changes: 36 additions & 0 deletions package/config/tekton-catalog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#@ load("@ytt:data", "data")
#@ load("@ytt:yaml", "yaml")
#@ load("/helpers.star", "is_package_enabled")

#@ if is_package_enabled("tekton-catalog"):

---
apiVersion: packaging.carvel.dev/v1alpha1
kind: PackageInstall
metadata:
name: tekton-catalog
namespace: #@ data.values.packages.namespace
annotations:
kapp.k14s.io/change-group: tekton-catalog
kapp.k14s.io/change-rule.tekton-pipelines: upsert after upserting tekton-pipelines
kapp.k14s.io/change-rule.service-account: delete before deleting serviceaccount
spec:
serviceAccountName: kadras-install-sa
packageRef:
refName: tekton-catalog.packages.kadras.io
versionSelection:
constraints: 0.1.0
prereleases: {}
values:
- secretRef:
name: tekton-catalog-values
---
apiVersion: v1
kind: Secret
metadata:
name: tekton-catalog-values
namespace: #@ data.values.packages.namespace
stringData:
values.yaml: #@ yaml.encode(data.values.tekton.catalog)

#@ end
2 changes: 1 addition & 1 deletion package/config/tekton-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
packageRef:
refName: tekton-pipelines.packages.kadras.io
versionSelection:
constraints: 0.45.0+kadras.1
constraints: 0.46.0+kadras.1
prereleases: {}
values:
- secretRef:
Expand Down
3 changes: 3 additions & 0 deletions package/config/values-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ secretgen_controller: {}

#@schema/desc "Configuration for Tekton related packages."
tekton:
#@schema/desc "Configuration for the Tekton Catalog package."
#@schema/type any=True
catalog: {}
#@schema/desc "Configuration for the Tekton Pipelines package."
#@schema/type any=True
pipelines: {}