Skip to content
This repository has been archived by the owner on May 28, 2021. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
prydie committed Jan 8, 2018
0 parents commit dc85780
Show file tree
Hide file tree
Showing 10,068 changed files with 4,398,530 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 3 additions & 0 deletions .dockerignore
@@ -0,0 +1,3 @@
*
!bin/
!docker
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
[*]
end_of_line = lf
insert_final_newline = true

[Makefile]
indent_style = tab

[*.go]
indent_style = tab

[*.{yml,yaml}]
indent_style = space
indent_size = 2
48 changes: 48 additions & 0 deletions .gitignore
@@ -0,0 +1,48 @@
# Ignore builds
dist/
bin/
.push-wcr*
.container-wcr*

test/system/runner.log
test/system/terraform/cluster/.terraform/
test/system/terraform/cluster/ansible_hosts
test/system/terraform/cluster/mysql-operator-*-admin.conf
test/system/terraform/cluster/mysql-operator-*-source.sh
test/system/terraform/cluster/master
test/system/terraform/cluster/master.pub
test/system/terraform/cluster/terraform.tfstate
test/system/terraform/cluster/terraform.tfstate.backup

# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

**/*~

cloud-provider.cfg
manifests/bmcs-config.yaml
manifests/bmcs-secret.yaml
env.sh

# test generated file
test/e2e/manifests/e2e-mysql-operator-controller.yaml

# Vim
*.sw[op]
.go

# Goland
.idea
*.iml
42 changes: 42 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,42 @@
## [Release 0.2.0]

### Added

- Ability to create an on-demand snapshot backup of a MySQL EE cluster.
- Ability to perform an on-demand restore of a snapshot backup of a MySQL EE
cluster.

### Changed
N/A

### Removed
N/A

### Fixed
N/A

### Deprecated
N/A

## [Release 0.1.0]

### Added

Initial build of Kubernetes MySQL Operator.

- Create and delete single instance MySQL EE cluster
- Ability to specify PVC
- Ability to specify a secret for MySQL root password (auto-generated if not
set)

### Changed
N/A

### Removed
N/A

### Fixed
N/A

### Deprecated
N/A
24 changes: 24 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,24 @@
# Contributing to the OCI Volume Provisioner

*Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.*

Pull requests can be made under
[The Oracle Contributor Agreement](https://www.oracle.com/technetwork/community/oca-486395.html)
(OCA).

For pull requests to be accepted, the bottom of
your commit message must have the following line using your name and
e-mail address as it appears in the OCA Signatories list.

```
Signed-off-by: Your Name <you@example.org>
```

This can be automatically added to pull requests by committing with:

```
git commit --signoff
```

Only pull requests from committers that can be verified as having
signed the OCA can be accepted.

0 comments on commit dc85780

Please sign in to comment.