2019-07-18 03:44:07 +03:00
|
|
|
# Binaries for programs and plugins
|
|
|
|
*.exe
|
|
|
|
*.exe~
|
|
|
|
*.dll
|
|
|
|
*.so
|
|
|
|
*.dylib
|
2019-08-06 05:02:32 +03:00
|
|
|
bin
|
|
|
|
default.etcd
|
2019-07-18 03:44:07 +03:00
|
|
|
|
|
|
|
# Test binary, build with `go test -c`
|
|
|
|
*.test
|
|
|
|
|
2020-04-14 00:56:41 +03:00
|
|
|
# Output of the test and coverage results
|
|
|
|
reports/
|
2019-08-29 22:51:59 +03:00
|
|
|
|
|
|
|
bin/
|
|
|
|
vendor/
|
2019-08-06 05:02:32 +03:00
|
|
|
coverage.txt
|
|
|
|
report.xml
|
|
|
|
cover.html
|
|
|
|
coverage.json
|
|
|
|
coverage.xml
|
|
|
|
testlogs.txt
|
|
|
|
|
2019-09-13 07:23:42 +03:00
|
|
|
# Generated CRDS
|
|
|
|
config/crd/bases/*
|
|
|
|
config/rbac/role.yaml
|
|
|
|
|
2021-08-26 06:58:06 +03:00
|
|
|
# Kubernetes Generated files - skip generated files, except for vendored/hack/v2 files
|
2021-05-12 06:50:09 +03:00
|
|
|
zz_generated.*
|
2019-08-06 05:02:32 +03:00
|
|
|
!vendor/**/zz_generated.*
|
2021-08-26 06:58:06 +03:00
|
|
|
!hack/**/zz_generated.*
|
|
|
|
!v2/**/zz_generated.*
|
2019-08-06 05:02:32 +03:00
|
|
|
|
|
|
|
# editor and IDE paraphernalia
|
|
|
|
.idea
|
|
|
|
*.swp
|
|
|
|
*.swo
|
|
|
|
*~
|
|
|
|
.env
|
|
|
|
__debug_bin
|
|
|
|
.vscode
|
eventhub-patch (#85)
* initial commit
* Merged PR 669: Add ReadMe
Related work items: #1668
* Merged PR 671: add env variable setup for windows
add env variable setup for windows
Related work items: #1668
* Merged PR 715: add azure pipeline file
add azure pipeline file
Related work items: #1776
* change file location
* Merged PR 717: update package name
update package name
Related work items: #1776
* update imagename to lower case #1776
* remove vscode folder from repo
* add __debug_bin to .gitignore
* add copy aztestcreator package
* add missing line
* move docker file to devops folder
* change path
* rename aztestcreator to resourcemanager
* change the namespace and image name
* update eventhub type to be consistant with arm template
* add tags to the image
* wip
* changes to get tests working
* wip
* updates
* update test with new type changes
* clean up
* change timeout
* rename microsoft domin, add resource group kind, general clean up
* remove default values from resourcemanager global vars
* add loadsettings fo suite to read env variables
* add delete functionality for eventhubs and namespaces wip
* added resourcegroup test
* add finalizers to test delete option
* wip - seperating namespace and eventhub kind
* update tests to work with new changes
* remove copyrights
* minor updates
* remove unused package
* rename webapp from creator to azure
* rename domin from telstra.k8.io to microsoft.com
* add tests dashboard to azure pipeline wip
* update working directorty path
* wip
* add creating resourcegroup test
* update pipline to show test results in devops
* increase time.sleep for resources to get created before they can be deleted
* add go mod download
* add missing packages
* remove test coverage setting
* update pipline to show test results in devops
* wip - test coverage test
* update pipeline
* add missing go package
* wip
* fix file name
* "update test"
* fix broken pipeline to show test results
* Merged PR 793: add path to find dockerfile
add path to find dockerfile
Related work items: #1776
* Merged PR 796: test
Related work items: #1776
* fix namespace tests
* update message
* Merged PR 800: set value of image_url in setup yaml file
Related work items: #1776, #1845
* Merged PR 802: add env vars to manger image in setup yaml
Related work items: #1845
* add more tests
* update makefile
* update eventhub to get properties
* update tests
* Merged PR 836: record error returned from azure
Related work items: #1775
* Merged PR 863: Includes #1925 #1944
- Create access policy for event hub
- the Access policy name and rights are read from the type
- add primary key, secondary key, primaryconnectionstring, secondaryconnectionstring, eventhubnamespace, sharedaccesskeyname to k8s secrets in the same namespace as eventhub
Related work items: #1925, #1944
* Merged PR 890: add role for secrets and events
add role for secrets and events
Related work items: #2044
* Merged PR 896: add webhook for eventhub
add webhook for eventhub
Related work items: #1924, #2018
* add requeue after duration for reconcile
* requeue after need not be a secret
* Merged PR 913: add owner reference for eventhub secrets for del
add owner reference for eventhub secrets for del
Related work items: #2055
* set default value
* Merged PR 938: update make file
update make file
Related work items: #2116
* add owner namespace as reference to eventhub
* add owner reference for eventhubnamespace
* add comment
* provisioning false creating resource azure fails
* Merged PR 990: add validation for EH namespace length
add validation for EH namespace length
Related work items: #2115
* Merged PR 1009: add webhook tests in controller
add tests to check webhook validation in controller.
run those tests if use existing cluster env variable is set
Related work items: #2110
* update docker image
2019-08-15 18:37:51 +03:00
|
|
|
.DS_Store
|
|
|
|
cover-existing.html
|
|
|
|
coverage-existing.txt
|
|
|
|
report-existing.xml
|
|
|
|
testlogs-existing.txt
|
2019-10-02 01:31:49 +03:00
|
|
|
|
2019-10-23 18:48:11 +03:00
|
|
|
# terraform artifacts
|
|
|
|
.terraform*
|
2020-10-08 01:04:07 +03:00
|
|
|
terraform.tfstate*
|
|
|
|
|
|
|
|
# operator bundle artifacts
|
|
|
|
bundle.Dockerfile
|
|
|
|
bundle/
|
2021-05-12 06:25:47 +03:00
|
|
|
|
|
|
|
# Test binary, built with `go test -c`
|
|
|
|
*.test
|
|
|
|
|
|
|
|
# go-task file hashes
|
|
|
|
.task/
|
|
|
|
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
|
|
*.out
|
|
|
|
*.lcov
|
|
|
|
|
|
|
|
# built from the makefile
|
|
|
|
.k8sinfra.cluster
|
|
|
|
.env
|
|
|
|
|
|
|
|
pki/certs
|
|
|
|
|
|
|
|
dist
|
|
|
|
|
|
|
|
template.json
|
|
|
|
|
|
|
|
hack/tools
|
2022-06-09 06:30:37 +03:00
|
|
|
|
|
|
|
# Private powershell scripts
|
|
|
|
.ps
|
2024-08-02 00:33:22 +03:00
|
|
|
|
|
|
|
# goenv condiguration
|
|
|
|
.go-version
|