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
--- | |
apiVersion: v1 | |
stringData: | |
ca.pem: | | |
-----BEGIN CERTIFICATE----- | |
MIIFFjCCAv6gAwIBAgIRAJErCErPDBinU/bWLiWnX1owDQYJKoZIhvcNAQELBQAw | |
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh | |
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjAwOTA0MDAwMDAw | |
WhcNMjUwOTE1MTYwMDAwWjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg | |
RW5jcnlwdDELMAkGA1UEAxMCUjMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK |
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
#! variables that need to be externally configurable | |
#! are specified in a data values schema file | |
#! This file is just here to show how the values are merged together. | |
#@ load("@ytt:data", "data") | |
#@ load("@ytt:yaml", "yaml") | |
tap_values: #@ yaml.encode(data.values) |
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
--- | |
apiVersion: packaging.carvel.dev/v1alpha1 | |
kind: PackageInstall | |
metadata: | |
name: simple-app | |
namespace: common-install | |
spec: | |
serviceAccountName: common-sa | |
packageRef: | |
refName: simple.app.example.com |
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
#@ load("@ytt:overlay", "overlay") | |
#@ load("@ytt:data", "data") | |
--- | |
apiVersion: sso.apps.tanzu.vmware.com/v1alpha1 | |
kind: ClientRegistration | |
metadata: | |
name: boats-appsso | |
namespace: boats | |
spec: |
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
#@ load("@ytt:data", "data") | |
#@ load("@ytt:yaml", "yaml") | |
#@ load("@ytt:overlay", "overlay") | |
#@ def supervisor_svc_external_dns(): | |
#@ return "kubectl.phantom.{}".format(data.values.cluster_domain) | |
#@ end | |
#@ def management_overlay(): |
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
#@ load("@ytt:struct", "struct") | |
#@ load("@ytt:yaml", "yaml") | |
#@ def stuff(): | |
crd: | |
- group: cert-manager.io | |
kind: ClusterIssuer | |
version: v1 | |
- group: secretgen.carvel.dev |
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
#!/usr/bin/env bash | |
set -eu -o pipefail | |
USAGE="Usage: $0 PACKAGE ACTION REPO # ACTION should be test or deploy" | |
if [ "$#" == "0" ]; then | |
echo "$USAGE" | |
exit 1 | |
fi |
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
#@ load("@ytt:data", "data") | |
apiVersion: data.packaging.carvel.dev/v1alpha1 | |
kind: Package | |
metadata: | |
name: #@ "flux-source-controller.create.army.mil.{}".format(data.values.bundle.tag) | |
namespace: flux-source-controller | |
spec: | |
refName: flux-source-controller.create.army.mil | |
#@ tag = "{}".format(data.values.bundle.tag) |
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
#@ load("@ytt:overlay", "overlay") | |
#@ load("@ytt:data", "data") | |
#@overlay/match by=overlay.subset({"kind": "Deployment"}), expects="1+" | |
--- | |
spec: | |
template: | |
spec: | |
containers: | |
#@overlay/match by=overlay.subset({"name": "manager"}), expects="1+" |
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
apiVersion: data.packaging.carvel.dev/v1alpha1 | |
kind: Package | |
metadata: | |
name: scp-toolkit.tanzu.vmware.com.0.3.0 | |
namespace: scp-toolkit | |
spec: | |
refName: scp-toolkit.tanzu.vmware.com | |
version: 0.3.0 | |
releaseNotes: | | |
* Updated support for authentication to private registries to use new method introduced by kapp-controller v0.24.0 and secretgen-controller v0.5.0, see [Authenticating to Private Registries](https://carvel.dev/kapp-controller/docs/latest/private-registry-auth/). |
NewerOlder