Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit #1

Merged
merged 1 commit into from
Jan 30, 2023
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
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
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** (include the SHA if the version is not obvious)

**Environment where the bug was observed (cloud, OS, etc)**

**Relevant Debug Output (Logs, etc)**

17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
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**

28 changes: 28 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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"
-->

30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
- package-ecosystem: gomod
directory: "/hack"
schedule:
interval: daily
- package-ecosystem: gomod
directory: "/hack/kapp"
schedule:
interval: daily
- package-ecosystem: gomod
directory: "/hack/ko"
schedule:
interval: daily
- package-ecosystem: gomod
directory: "/hack/kustomize"
schedule:
interval: daily
- package-ecosystem: gomod
directory: "/hack/ytt"
schedule:
interval: daily
14 changes: 14 additions & 0 deletions .github/kapp/kapp-controller-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

#! Copyright 2022 VMware Inc. All rights reserved

#@ 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)
1 change: 1 addition & 0 deletions .github/smoke/image/hello.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
world
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