Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Andrews <[email protected]>
  • Loading branch information
scothis committed Feb 18, 2022
0 parents commit f1c24ec
Show file tree
Hide file tree
Showing 162 changed files with 53,104 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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)**
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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**
27 changes: 27 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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"
-->
32 changes: 32 additions & 0 deletions .github/dependabot.yml
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
26 changes: 26 additions & 0 deletions .github/kapp/kapp-controller-config.yaml
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)
48 changes: 48 additions & 0 deletions .github/tls/config.json
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"
}
}
}
}
16 changes: 16 additions & 0 deletions .github/tls/intermediate-csr.json
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"
}
]
}
14 changes: 14 additions & 0 deletions .github/tls/root-csr.json
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"
}
]
}
12 changes: 12 additions & 0 deletions .github/tls/server-csr.json
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"
}
]
}
Loading

0 comments on commit f1c24ec

Please sign in to comment.