diff options
author | Srivahni <srivahni.chivukula@intel.com> | 2019-08-05 15:39:34 -0700 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2019-08-11 21:50:15 +0000 |
commit | cda9d563ef843be5f80ce5755cb291c68dc6e3e8 (patch) | |
tree | 463fa10ee2c6399b0d33b2b4f7b04daa8240f223 /vnfs/DAaaS/microservices/visualization-operator/.gitignore | |
parent | d9eab4e0325f26d8e05263413e3af5a1bf9ed046 (diff) |
Skeletal code for visualization-operator
This visualization-operator(based on operator-sdk)
when deployed, should be able to manage(add/update/delete)
the datasources dynamically without restarting the
grafana pods.
Issue-ID: ONAPARC-393
Signed-off-by: Srivahni <srivahni.chivukula@intel.com>
Change-Id: I2df3659aca5dd9ad59cf58adaf3c30999829fa2f
Diffstat (limited to 'vnfs/DAaaS/microservices/visualization-operator/.gitignore')
-rw-r--r-- | vnfs/DAaaS/microservices/visualization-operator/.gitignore | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/vnfs/DAaaS/microservices/visualization-operator/.gitignore b/vnfs/DAaaS/microservices/visualization-operator/.gitignore new file mode 100644 index 00000000..7c504700 --- /dev/null +++ b/vnfs/DAaaS/microservices/visualization-operator/.gitignore @@ -0,0 +1,77 @@ +# Temporary Build Files +build/_output +build/_test +# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* +# Org-mode +.org-id-locations +*_archive +# flymake-mode +*_flymake.* +# eshell files +/eshell/history +/eshell/lastdir +# elpa packages +/elpa/ +# reftex files +*.rel +# AUCTeX auto folder +/auto/ +# cask packages +.cask/ +dist/ +# Flycheck +flycheck_*.el +# server auth directory +/server/ +# projectiles files +.projectile +projectile-bookmarks.eld +# directory configuration +.dir-locals.el +# saveplace +places +# url cache +url/cache/ +# cedet +ede-projects.el +# smex +smex-items +# company-statistics +company-statistics-cache.el +# anaconda-mode +anaconda-mode/ +### Go ### +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +# Test binary, build with 'go test -c' +*.test +# Output of the go coverage tool, specifically when used with LiteIDE +*.out +### Vim ### +# swap +.sw[a-p] +.*.sw[a-p] +# session +Session.vim +# temporary +.netrwhist +# auto-generated tag files +tags +### VisualStudioCode ### +.vscode/* +.history +# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode |