This file contains hidden or 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
| #@ load("@ytt:overlay", "overlay") | |
| #@ load("@ytt:data", "data") | |
| #@ load("@ytt:yaml", "yaml") | |
| #@ def kpack_template(): | |
| kind: ClusterImageTemplate | |
| metadata: | |
| name: kpack-template | |
| #@ end |
This file contains hidden or 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
| import org.apache.geode.cache.Region; | |
| import org.apache.geode.cache.execute.Function; | |
| import org.apache.geode.cache.execute.FunctionContext; | |
| import org.apache.geode.cache.util.ObjectSizer; | |
| import org.apache.logging.log4j.LogManager; | |
| import org.apache.logging.log4j.Logger; | |
| import java.util.ArrayList; | |
| import java.util.Iterator; | |
| import java.util.List; |
This file contains hidden or 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
| tekton_pipelines: | |
| feature_flags: | |
| enable_api_fields: "alpha" | |
| results_from: "sidecar-logs" | |
| max_result_size: "8192" |
This file contains hidden or 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
| apiVersion: batch/v1 | |
| kind: CronJob | |
| metadata: | |
| name: ready-workload-checker | |
| namespace: tap-install | |
| spec: | |
| schedule: "*/1 * * * *" # Runs every 5 minutes TODO: Adjust this to what you need. Example to run every day at midnight: 0 0 * * * | |
| concurrencyPolicy: Forbid | |
| successfulJobsHistoryLimit: 3 | |
| failedJobsHistoryLimit: 1 |
This file contains hidden or 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
| #@ load("@ytt:overlay", "overlay") | |
| #@overlay/match by=overlay.subset({"kind": "ClusterImageTemplate", "metadata": {"name": "image-vulnerability-scan-trivy"}}), expects="0+" | |
| --- | |
| spec: | |
| retentionPolicy: | |
| maxFailedRuns: 2 | |
| maxSuccessfulRuns: 2 | |
| #@overlay/match by=overlay.subset({"kind": "ClusterConfigTemplate", "metadata": {"name": "carvel-package"}}), expects="0+" |
This file contains hidden or 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
| apiVersion: conventions.carto.run/v1alpha1 | |
| kind: PodIntent | |
| metadata: | |
| labels: | |
| app.kubernetes.io/component: intent | |
| app.kubernetes.io/part-of: friday-java-web-app | |
| apps.tanzu.vmware.com/auto-configure-actuators: "true" | |
| apps.tanzu.vmware.com/workload-type: web | |
| carto.run/cluster-template-name: convention-template | |
| carto.run/resource-name: config-provider |
This file contains hidden or 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
| apiVersion: v1 | |
| kind: Secret | |
| metadata: | |
| name: tekton-pipelines-webhook-overlay | |
| namespace: tap-install | |
| stringData: | |
| tekton-pipelines-webhook-overlay.yml: | | |
| #@ load("@ytt:overlay", "overlay") | |
| #@overlay/match by=overlay.subset({"kind": "HorizontalPodAutoscaler", "metadata": {"name": "tekton-pipelines-webhook"}}), expects="0+" |
This file contains hidden or 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
| #@ load("@ytt:overlay", "overlay") | |
| #@overlay/match by=overlay.subset({"kind":"Deployment","metadata":{"name":"contour"}}), expects="1+" | |
| --- | |
| spec: | |
| #@overlay/replace via=lambda left, _: left | |
| replicas: | |
| --- | |
| apiVersion: projectcontour.io/v1alph1 | |
| kind: ExtensionService |
This file contains hidden or 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
| #@ load("@ytt:overlay", "overlay") | |
| #@ def with_name(): | |
| volumeClaimTemplate: | |
| spec: | |
| #@overlay/replace | |
| accessModes: | |
| - ReadWriteMany | |
| #@overlay/match missing_ok=True | |
| storageClassName: sc-tekton |
This file contains hidden or 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
| #@ load("@ytt:overlay", "overlay") | |
| #@overlay/match by=overlay.subset({"kind": "Deployment", "metadata": {"name": "envoy"}}) | |
| --- | |
| spec: | |
| template: | |
| spec: | |
| volumes: | |
| - configMap: | |
| name: envoy-config |
NewerOlder