Skip to content
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
7 changes: 1 addition & 6 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# This is a comment.
# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything '*'
# in the repo. Unless a later match takes precedence,
# this owner will be requested for review when someone
# opens a pull request.
* @mvillumsen @MichaelVL
* @mvillumsen @michaelvl
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'bug'
assignees: ''
---

Checklist:

* [ ] I have search existing issues for duplicates of the bug.
* [ ] I have included steps to reproduce the bug.
* [ ] I have included version information for container and Helm chart that this bug applies to.
* [ ] I have included relevant custom GatewayClassBlueprints, GatewayClassConfig and GatewayConfig.

**Describe the bug**

<!-- A clear and concise description of what the bug is. -->

**To Reproduce**

<!-- A list of the steps required to reproduce the issue. Best of all, give us the URL to a repository that exhibits this issue. -->

**Expected behavior**

<!-- A clear and concise description of what you expected to happen. -->

**Versions**

<!-- Container and Helm chart version. Also, when applicable, versions of blueprints -->

**Logs**

```
Paste any relevant application logs here.
```
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement_proposal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Enhancement proposal
about: Propose an enhancement for this project
title: ''
labels: 'enhancement'
assignees: ''
---
# Summary

What change you think needs making.

# Motivation

Please give examples of your use case, e.g. when would you use this.

# Proposal

How do you think this should be implemented?
12 changes: 12 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
**Description**

<!-- Please provide a summary of the change here. -->

<!-- Please link to all GitHub issue that this pull request implements -->
Fixes #ISSUE

**Checklist**

- [ ] Unit tests updated
- [ ] End user documentation updated
- [ ] If changes apply to Helm chart, a note have been made in the 'UNRELEASED' section of the charts CHANGELOG.md
2 changes: 2 additions & 0 deletions .github/workflows/chart-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
paths:
- 'charts/gateway-controller/**'

jobs:
release:
Expand Down
18 changes: 18 additions & 0 deletions charts/bifrost-gateway-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Gateway-controller Helm Chart Changelog

## [UNRELEASED]

- Example text, replace with PR info according to example below.


## [0.1.5]

- Bump version as part of name change. ([#125](https://github.com/tv2-oss/gateway-controller/pull/125)) [@michaelvl](https://github.com/michaelvl)

## [0.1.4]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this be 0.1.5?


- Add issue templates and PR template. ([#121](https://github.com/tv2-oss/gateway-controller/pull/121)) [@michaelvl](https://github.com/michaelvl)

## [0.1.3]

- Helm chart corrections and test. ([#103](https://github.com/tv2-oss/gateway-controller/pull/103)) [@michaelvl](https://github.com/michaelvl)
2 changes: 1 addition & 1 deletion charts/bifrost-gateway-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: bifrost-gateway-controller
description: Gateway API driven management of network infrastructure across Kubernetes and cloud infrastructure
type: application
version: 0.1.4
version: 0.1.5
appVersion: "0.0.13"
2 changes: 1 addition & 1 deletion charts/bifrost-gateway-controller/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bifrost-gateway-controller

![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.13](https://img.shields.io/badge/AppVersion-0.0.13-informational?style=flat-square)
![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.13](https://img.shields.io/badge/AppVersion-0.0.13-informational?style=flat-square)

Gateway API driven management of network infrastructure across Kubernetes and cloud infrastructure

Expand Down