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

maint: Update ownership and community health files #194

Merged
merged 7 commits into from Nov 29, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 21 additions & 1 deletion .circleci/config.yml
Expand Up @@ -30,10 +30,30 @@ jobs:
echo "skipping push. CIRCLE_PULL_REQUEST=${CIRCLE_PULL_REQUEST}, CIRCLE_BRANCH=${CIRCLE_BRANCH}, CIRCLE_TAG=${CIRCLE_TAG}"
fi;

publish_github:
docker:
- image: cibuilds/github:0.13.0
steps:
- attach_workspace:
at: ~/
- run:
name: "Publish Release on GitHub"
command: |
echo "about to publish to tag ${CIRCLE_TAG}"
ghr -draft -n ${CIRCLE_TAG} -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${CIRCLE_TAG}

# Orchestrate or schedule a set of jobs, see https://circleci.com/docs/2.0/workflows/
workflows:
version: 2
build_and_deploy:
build:
jobs:
- build_agent: *tag_filters
- publish_github:
context: Honeycomb Secrets for Public Repos
requires:
- build_agent
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/
17 changes: 17 additions & 0 deletions .editorconfig
@@ -0,0 +1,17 @@
# EditorConfig is awesome: https://EditorConfig.org

# When opening a file, EditorConfig plugins look for a file named .editorconfig
# in the directory of the opened file and in every parent directory.
# A search for .editorconfig files will stop if the root filepath is reached
# or an EditorConfig file with root=true is found.

# EditorConfig files are read top to bottom and the most recent rules found
# take precedence. Properties from matching EditorConfig sections are applied
# in the order they were read, so properties in closer files take precedence.

# go files
[*.go]

indent_size = 8
indent_style = tab
tab_width = 8
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
@@ -0,0 +1,5 @@
# Code owners file.
# This file controls who is tagged for review for any given pull request.

# For anything not explicitly taken by someone else:
* @honeycombio/telemetry-team @puckpuck @lizthegrey @paulosman
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,26 @@
---
name: Bug report
about: Let us know if something is not working as expected
title: ''
labels: 'type: bug'
assignees: ''

---

<!---
Thank you for taking the time to report bugs!

We love code snippets and links to repositories that reproduce the issue, but understand if you don't have the time to add them. We'll do our best with the info you provide, and might ask follow-up questions.

Please see our [OSS process document](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md#) to get an idea of how we operate.
--->

**Versions**

<!-- version of honeycomb-kubernetes-agent and any other relevant bits -->

**Steps to reproduce**

1.

**Additional context**
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,25 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'type: enhancement'
assignees: ''

---

<!---
Thank you for contributing an idea to this project!

Please see our [OSS process document](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md#) to get an idea of how we operate.
--->

**Is your feature request related to a problem? Please describe.**


**Describe the solution you'd like**


**Describe alternatives you've considered**


**Additional context**
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/question-discussion.md
@@ -0,0 +1,14 @@
---
name: Question/Discussion
about: General question about how things work or a discussion
title: ''
labels: 'type: discussion'
assignees: ''

---

<!---
Thank you for taking the time to say hello!

Please see our [OSS process document](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md#) to get an idea of how we operate.
--->
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/security-vulnerability-report.md
@@ -0,0 +1,21 @@
---
name: Security vulnerability report
about: Let us know if you discover a security vulnerability
title: ''
labels: 'type: security'
assignees: ''

---

<!---
Thank you for taking the time to report security vulnerabilities!

Please see our [OSS process document](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md#) to get an idea of how we operate.
--->
**Versions**

<!-- version of honeycomb-kubernetes-agent and any other relevant bits -->

**Description**

(Please include any relevant CVE advisory links)
19 changes: 19 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,19 @@
<!--
Thank you for contributing to the project! 💜
Please make sure to:
- Chat with us first if this is a big change
- Open a new issue (or comment on an existing one)
- We want to make sure you don't spend time implementing something we might have to say No to
- Add unit tests
- Mention any relevant issues in the PR description (e.g. "Fixes #123")

Please see our [OSS process document](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md#) to get an idea of how we operate.
-->

## Which problem is this PR solving?

-

## Short description of the changes

-
1 change: 1 addition & 0 deletions .github/dependabot.yml
Expand Up @@ -10,5 +10,6 @@ updates:
schedule:
interval: "weekly"
reviewers:
- "honeycombio/telemetry-team"
- "lizthegrey"
- "puckpuck"
14 changes: 14 additions & 0 deletions .github/workflows/add-to-project.yml
@@ -0,0 +1,14 @@
name: Apply project management flow
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
jobs:
project-management:
runs-on: ubuntu-latest
name: Apply project management flow
steps:
- uses: honeycombio/oss-management-actions/projects@v1
with:
ghprojects-token: ${{ secrets.GHPROJECTS_TOKEN }}
26 changes: 26 additions & 0 deletions .github/workflows/stale.yml
@@ -0,0 +1,26 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
name: 'Close stale issues and PRs'
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v4
with:
start-date: '2021-09-01T00:00:00Z'
stale-issue-message: 'Marking this issue as stale because it has been open 14 days with no activity. Please add a comment if this is still an ongoing issue; otherwise this issue will be automatically closed in 7 days.'
stale-pr-message: 'Marking this PR as stale because it has been open 30 days with no activity. Please add a comment if this PR is still relevant; otherwise this PR will be automatically closed in 7 days.'
close-issue-message: 'Closing this issue due to inactivity. Please see our [Honeycomb OSS Lifecyle and Practices](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md).'
close-pr-message: 'Closing this PR due to inactivity. Please see our [Honeycomb OSS Lifecyle and Practices](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md).'
days-before-issue-stale: 14
days-before-pr-stale: 30
days-before-issue-close: 7
days-before-pr-close: 7
any-of-labels: 'status: info needed,status: revision needed'
1 change: 0 additions & 1 deletion CODEOWNERS

This file was deleted.

3 changes: 3 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,3 @@
# Contributing Guide

Please see our [general guide for OSS lifecycle and practices.](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md)
13 changes: 13 additions & 0 deletions NOTICE
@@ -0,0 +1,13 @@
Copyright (c) 2016-Present Honeycomb, Hound Technology, Inc. All Rights Reserved.

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.
1 change: 1 addition & 0 deletions OSSMETADATA
@@ -0,0 +1 @@
osslifecycle=maintenance
3 changes: 2 additions & 1 deletion README.md
@@ -1,6 +1,7 @@
# Cluster-level Kubernetes Logging with Honeycomb

[![Build Status](https://travis-ci.org/honeycombio/honeycomb-kubernetes-agent.svg?branch=master)](https://travis-ci.org/honeycombio/honeycomb-kubernetes-agent)
[![OSS Lifecycle](https://img.shields.io/osslifecycle/honeycombio/honeycomb-kubernetes-agent?color=success)](https://github.com/honeycombio/home/blob/main/honeycomb-oss-lifecycle-and-practices.md)
[![CircleCI](https://circleci.com/gh/honeycombio/honeycomb-kubernetes-agent.svg?style=shield)](https://circleci.com/gh/honeycombio/honeycomb-kubernetes-agent)

[Honeycomb's](https://honeycomb.io) Kubernetes agent aggregates logs across a Kubernetes cluster. Stop managing log storage in all your clusters and start tracking down real problems.

Expand Down
3 changes: 3 additions & 0 deletions SECURITY.md
@@ -0,0 +1,3 @@
# Reporting Security Issues

If you discover a security vulnerability, please open an issue with label `type: security`.
3 changes: 3 additions & 0 deletions SUPPORT.md
@@ -0,0 +1,3 @@
# How to Get Help

This project uses GitHub issues to track bugs, feature requests, and questions about using the project. Please search for existing issues before filing a new one.