Skip to content

Commit 7f69bea

Browse files
committed
Initial commit
Signed-off-by: Timothy St. Clair <[email protected]>
0 parents  commit 7f69bea

File tree

1,511 files changed

+675059
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,511 files changed

+675059
-0
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Changelog
2+
3+
#### v1.0.0 - YYYY-MM-DD
4+
* Initial Release

CODE_OF_CONDUCT.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Sonobuoy Community Code of Conduct
2+
3+
## Contributor Code of Conduct
4+
5+
As contributors and maintainers of this project, and in the interest of fostering
6+
an open and welcoming community, we pledge to respect all people who contribute
7+
through reporting issues, posting feature requests, updating documentation,
8+
submitting pull requests or patches, and other activities.
9+
10+
We are committed to making participation in this project a harassment-free experience for
11+
everyone, regardless of level of experience, gender, gender identity and expression,
12+
sexual orientation, disability, personal appearance, body size, race, ethnicity, age,
13+
religion, or nationality.
14+
15+
Examples of unacceptable behavior by participants include:
16+
17+
* The use of sexualized language or imagery
18+
* Personal attacks
19+
* Trolling or insulting/derogatory comments
20+
* Public or private harassment
21+
* Publishing other's private information, such as physical or electronic addresses,
22+
without explicit permission
23+
* Other unethical or unprofessional conduct.
24+
25+
Project maintainers have the right and responsibility to remove, edit, or reject
26+
comments, commits, code, wiki edits, issues, and other contributions that are not
27+
aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers
28+
commit themselves to fairly and consistently applying these principles to every aspect
29+
of managing this project. Project maintainers who do not follow or enforce the Code of
30+
Conduct may be permanently removed from the project team.
31+
32+
This code of conduct applies both within project spaces and in public spaces
33+
when an individual is representing the project or its community.
34+
35+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project maintainer(s).
36+
37+
This Code of Conduct is adapted from the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md) and [Contributor Covenant](http://contributor-covenant.org/version/1/2/0/), version 1.2.0.

CONTRIBUTING.md

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Contributing
2+
## DCO Sign off
3+
4+
All authors to the project retain copyright to their work. However, to ensure
5+
that they are only submitting work that they have rights to, we are requiring
6+
everyone to acknowldge this by signing their work.
7+
8+
Any copyright notices in this repos should specify the authors as "The
9+
heptio/aws-quickstart authors".
10+
11+
To sign your work, just add a line like this at the end of your commit message:
12+
13+
```
14+
Signed-off-by: Joe Beda <[email protected]>
15+
```
16+
17+
This can easily be done with the `--signoff` option to `git commit`.
18+
19+
By doing this you state that you can certify the following (from https://developercertificate.org/):
20+
21+
```
22+
Developer Certificate of Origin
23+
Version 1.1
24+
25+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
26+
1 Letterman Drive
27+
Suite D4700
28+
San Francisco, CA, 94129
29+
30+
Everyone is permitted to copy and distribute verbatim copies of this
31+
license document, but changing it is not allowed.
32+
33+
34+
Developer's Certificate of Origin 1.1
35+
36+
By making a contribution to this project, I certify that:
37+
38+
(a) The contribution was created in whole or in part by me and I
39+
have the right to submit it under the open source license
40+
indicated in the file; or
41+
42+
(b) The contribution is based upon previous work that, to the best
43+
of my knowledge, is covered under an appropriate open source
44+
license and I have the right under that license to submit that
45+
work with modifications, whether created in whole or in part
46+
by me, under the same open source license (unless I am
47+
permitted to submit under a different license), as indicated
48+
in the file; or
49+
50+
(c) The contribution was provided directly to me by some other
51+
person who certified (a), (b) or (c) and I have not modified
52+
it.
53+
54+
(d) I understand and agree that this project and the contribution
55+
are public and that a record of the contribution (including all
56+
personal information I submit with it, including my sign-off) is
57+
maintained indefinitely and may be redistributed consistent with
58+
this project or the open source license(s) involved.
59+
```

Dockerfile

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright 2017 Heptio Inc.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
FROM buildpack-deps:jessie-scm
16+
MAINTAINER Timothy St. Clair "[email protected]"
17+
18+
RUN apt-get update && apt-get -y --no-install-recommends install \
19+
ca-certificates \
20+
&& rm -rf /var/cache/apt/* \
21+
&& rm -rf /var/lib/apt/lists/*
22+
ADD sonobuoy /sonobuoy
23+
#USER nobody:nobody
24+
25+
CMD ["/bin/sh", "-c", "/sonobuoy master -v 3 --logtostderr"]

0 commit comments

Comments
 (0)