-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Scott Andrews <[email protected]>
- Loading branch information
0 parents
commit f1c24ec
Showing
162 changed files
with
53,104 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: Bug Report | ||
about: Use this template to report bugs or bad behavior. | ||
labels: bug, needs triage | ||
--- | ||
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may delay the bug being addressed. Thanks! | ||
--> | ||
|
||
**Bug description** | ||
|
||
**Expected behavior** | ||
|
||
**Steps to reproduce the bug** | ||
|
||
**Version** (Tanzu Application Platform, K8s the controller is installed on) | ||
|
||
**Environment where the bug was observed (cloud, OS, etc)** | ||
|
||
**Relevant Debug Output (Logs, etc)** |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for a feature request or change. | ||
labels: needs triage, enhancement | ||
--- | ||
|
||
<!-- Please use this template when requesting features or enhancements, and provide as much info as possible. Not doing so may delay our ability to address the request. Thanks! | ||
--> | ||
|
||
**Describe the feature request** | ||
|
||
**Is your feature request related to a problem? Please describe** | ||
|
||
**Describe alternatives you've considered** | ||
|
||
**Additional context** |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Pull request | ||
<!-- Please use this template and provide as much info as possible. Not doing so may delay the review of the pull request. Thanks! | ||
--> | ||
|
||
### What this PR does / why we need it | ||
|
||
|
||
### Which issue(s) this PR fixes | ||
<!-- | ||
Unless the PR is for a trivial change (e.g. fixing a typo), consider opening an issue first (and reference it here) so that the problem the PR addresses can be discussed independently of the solutions proposed by this PR. Usage: Fixes #<issue number>. | ||
--> | ||
|
||
Fixes # | ||
|
||
### Describe testing done for PR | ||
|
||
<!-- Example: Created vSphere workload cluster to verify change. --> | ||
|
||
|
||
### Additional information or special notes for your reviewer | ||
|
||
<!-- Add notes to that can aid in the review process, or leave blank --> | ||
|
||
<!-- | ||
If this pull request is just an idea or POC, or is not ready for review, select "Create draft pull request" (https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests#draft-pull-requests) | ||
instead of "Create pull request" | ||
--> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: gomod | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: gomod | ||
directory: "/webhook" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: gomod | ||
directory: "/samples/convention-server" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: gomod | ||
directory: "/samples/spring-convention-server" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: gomod | ||
directory: "/hack" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
#! Copyright 2022 VMware Inc. | ||
#! | ||
#! Licensed under the Apache License, Version 2.0 (the "License"); | ||
#! you may not use this file except in compliance with the License. | ||
#! You may obtain a copy of the License at | ||
#! | ||
#! http://www.apache.org/licenses/LICENSE-2.0 | ||
#! | ||
#! Unless required by applicable law or agreed to in writing, software | ||
#! distributed under the License is distributed on an "AS IS" BASIS, | ||
#! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
#! See the License for the specific language governing permissions and | ||
#! limitations under the License. | ||
|
||
#@ load("@ytt:base64", "base64") | ||
#@ load("@ytt:data", "data") | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: kapp-controller-config | ||
namespace: kapp-controller | ||
data: | ||
caCerts: #@ base64.encode(data.values.ca_cert_data) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"signing": { | ||
"default": { | ||
"expiry": "24h" | ||
}, | ||
"profiles": { | ||
"intermediate": { | ||
"usages": [ | ||
"cert sign", | ||
"crl sign" | ||
], | ||
"ca_constraint": { | ||
"is_ca": true, | ||
"max_path_len": 0, | ||
"max_path_len_zero": true | ||
}, | ||
"expiry": "24h" | ||
}, | ||
"server": { | ||
"usages": [ | ||
"signing", | ||
"key encipherment", | ||
"server auth" | ||
], | ||
"expiry": "24h" | ||
}, | ||
"client": { | ||
"usages": [ | ||
"signing", | ||
"digital signature", | ||
"key encipherment", | ||
"client auth" | ||
], | ||
"expiry": "24h" | ||
}, | ||
"peer": { | ||
"usages": [ | ||
"signing", | ||
"digital signature", | ||
"key encipherment", | ||
"client auth", | ||
"server auth" | ||
], | ||
"expiry": "24h" | ||
} | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"CN": "CI Intermediate CA", | ||
"hosts": [ | ||
"" | ||
], | ||
"key": { | ||
"algo": "rsa", | ||
"size": 2048 | ||
}, | ||
"names": [ | ||
{ | ||
"O": "VMware Inc", | ||
"OU": "Tanzu" | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"CN": "CI Root CA", | ||
"hosts": [], | ||
"key": { | ||
"algo": "rsa", | ||
"size": 2048 | ||
}, | ||
"names": [ | ||
{ | ||
"O": "VMware Inc", | ||
"OU": "Tanzu" | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"key": { | ||
"algo": "rsa", | ||
"size": 2048 | ||
}, | ||
"names": [ | ||
{ | ||
"O": "VMware Inc", | ||
"OU": "Tanzu" | ||
} | ||
] | ||
} |
Oops, something went wrong.