Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
5095acb6
Commit
5095acb6
authored
Jun 08, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates templates for 11.0
parent
9d285f1f
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
31 additions
and
240 deletions
+31
-240
vendor/gitignore/Dart.gitignore
vendor/gitignore/Dart.gitignore
+9
-1
vendor/gitignore/Global/JetBrains.gitignore
vendor/gitignore/Global/JetBrains.gitignore
+1
-0
vendor/gitignore/Node.gitignore
vendor/gitignore/Node.gitignore
+6
-0
vendor/gitignore/Sass.gitignore
vendor/gitignore/Sass.gitignore
+2
-0
vendor/gitignore/TeX.gitignore
vendor/gitignore/TeX.gitignore
+4
-0
vendor/gitignore/Terraform.gitignore
vendor/gitignore/Terraform.gitignore
+9
-3
vendor/gitignore/VisualStudio.gitignore
vendor/gitignore/VisualStudio.gitignore
+0
-1
vendor/gitlab-ci-yml/autodeploy/Kubernetes-with-canary.gitlab-ci.yml
...ab-ci-yml/autodeploy/Kubernetes-with-canary.gitlab-ci.yml
+0
-87
vendor/gitlab-ci-yml/autodeploy/Kubernetes.gitlab-ci.yml
vendor/gitlab-ci-yml/autodeploy/Kubernetes.gitlab-ci.yml
+0
-74
vendor/gitlab-ci-yml/autodeploy/OpenShift.gitlab-ci.yml
vendor/gitlab-ci-yml/autodeploy/OpenShift.gitlab-ci.yml
+0
-74
No files found.
vendor/gitignore/Dart.gitignore
View file @
5095acb6
...
...
@@ -3,7 +3,6 @@
# Files and directories created by pub
.dart_tool/
.packages
.pub/
build/
# If you're building an application, you may want to check-in your pubspec.lock
pubspec.lock
...
...
@@ -11,3 +10,12 @@ pubspec.lock
# Directory created by dartdoc
# If you don't generate documentation locally you can remove this line.
doc/api/
# Avoid committing generated Javascript files:
*.dart.js
*.info.json # Produced by the --dump-info flag.
*.js # When generated by dart2js. Don't specify *.js if your
# project includes source files written in JavaScript.
*.js_
*.js.deps
*.js.map
vendor/gitignore/Global/JetBrains.gitignore
View file @
5095acb6
...
...
@@ -14,6 +14,7 @@
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
...
...
vendor/gitignore/Node.gitignore
View file @
5095acb6
...
...
@@ -59,3 +59,9 @@ typings/
# next.js build output
.next
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless
vendor/gitignore/Sass.gitignore
View file @
5095acb6
.sass-cache/
*.css.map
*.sass.map
*.scss.map
vendor/gitignore/TeX.gitignore
View file @
5095acb6
...
...
@@ -40,6 +40,10 @@
*.synctex.gz(busy)
*.pdfsync
## Build tool directories for auxiliary files
# latexrun
latex.out/
## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
...
...
vendor/gitignore/Terraform.gitignore
View file @
5095acb6
#
Local .terraform directories
# Local .terraform directories
**/.terraform/*
# .tfstate files
*.tfstate
*.tfstate.*
# .tfvars files
*.tfvars
# Crash log files
crash.log
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
# .tfvars files are managed as part of configuration and so should be included in
# version control.
#
# example.tfvars
vendor/gitignore/VisualStudio.gitignore
View file @
5095acb6
...
...
@@ -52,7 +52,6 @@ BenchmarkDotNet.Artifacts/
project.lock.json
project.fragment.lock.json
artifacts/
**/Properties/launchSettings.json
# StyleCop
StyleCopReport.xml
...
...
vendor/gitlab-ci-yml/autodeploy/Kubernetes-with-canary.gitlab-ci.yml
deleted
100644 → 0
View file @
9d285f1f
# This template has been DEPRECATED. Consider using Auto DevOps instead:
# https://docs.gitlab.com/ee/topics/autodevops
# Explanation on the scripts:
# https://gitlab.com/gitlab-examples/kubernetes-deploy/blob/master/README.md
image
:
registry.gitlab.com/gitlab-examples/kubernetes-deploy
variables
:
# Application deployment domain
KUBE_DOMAIN
:
domain.example.com
stages
:
-
build
-
test
-
review
-
staging
-
canary
-
production
-
cleanup
build
:
stage
:
build
script
:
-
command build
only
:
-
branches
canary
:
stage
:
canary
script
:
-
command canary
environment
:
name
:
production
url
:
http://$CI_PROJECT_PATH_SLUG.$KUBE_DOMAIN
when
:
manual
only
:
-
master
production
:
stage
:
production
script
:
-
command deploy
environment
:
name
:
production
url
:
http://$CI_PROJECT_PATH_SLUG.$KUBE_DOMAIN
when
:
manual
only
:
-
master
staging
:
stage
:
staging
script
:
-
command deploy
environment
:
name
:
staging
url
:
http://$CI_PROJECT_PATH_SLUG-staging.$KUBE_DOMAIN
only
:
-
master
review
:
stage
:
review
script
:
-
command deploy
environment
:
name
:
review/$CI_COMMIT_REF_NAME
url
:
http://$CI_PROJECT_PATH_SLUG-$CI_ENVIRONMENT_SLUG.$KUBE_DOMAIN
on_stop
:
stop_review
only
:
-
branches
except
:
-
master
stop_review
:
stage
:
cleanup
variables
:
GIT_STRATEGY
:
none
script
:
-
command destroy
environment
:
name
:
review/$CI_COMMIT_REF_NAME
action
:
stop
when
:
manual
allow_failure
:
true
only
:
-
branches
except
:
-
master
vendor/gitlab-ci-yml/autodeploy/Kubernetes.gitlab-ci.yml
deleted
100644 → 0
View file @
9d285f1f
# This template has been DEPRECATED. Consider using Auto DevOps instead:
# https://docs.gitlab.com/ee/topics/autodevops
# Explanation on the scripts:
# https://gitlab.com/gitlab-examples/kubernetes-deploy/blob/master/README.md
image
:
registry.gitlab.com/gitlab-examples/kubernetes-deploy
variables
:
# Application deployment domain
KUBE_DOMAIN
:
domain.example.com
stages
:
-
build
-
test
-
review
-
staging
-
production
-
cleanup
build
:
stage
:
build
script
:
-
command build
only
:
-
branches
production
:
stage
:
production
script
:
-
command deploy
environment
:
name
:
production
url
:
http://$CI_PROJECT_PATH_SLUG.$KUBE_DOMAIN
when
:
manual
only
:
-
master
staging
:
stage
:
staging
script
:
-
command deploy
environment
:
name
:
staging
url
:
http://$CI_PROJECT_PATH_SLUG-staging.$KUBE_DOMAIN
only
:
-
master
review
:
stage
:
review
script
:
-
command deploy
environment
:
name
:
review/$CI_COMMIT_REF_NAME
url
:
http://$CI_PROJECT_PATH_SLUG-$CI_ENVIRONMENT_SLUG.$KUBE_DOMAIN
on_stop
:
stop_review
only
:
-
branches
except
:
-
master
stop_review
:
stage
:
cleanup
variables
:
GIT_STRATEGY
:
none
script
:
-
command destroy
environment
:
name
:
review/$CI_COMMIT_REF_NAME
action
:
stop
when
:
manual
only
:
-
branches
except
:
-
master
vendor/gitlab-ci-yml/autodeploy/OpenShift.gitlab-ci.yml
deleted
100644 → 0
View file @
9d285f1f
# This template has been DEPRECATED. Consider using Auto DevOps instead:
# https://docs.gitlab.com/ee/topics/autodevops
# Explanation on the scripts:
# https://gitlab.com/gitlab-examples/openshift-deploy/blob/master/README.md
image
:
registry.gitlab.com/gitlab-examples/openshift-deploy
variables
:
# Application deployment domain
KUBE_DOMAIN
:
domain.example.com
stages
:
-
build
-
test
-
review
-
staging
-
production
-
cleanup
build
:
stage
:
build
script
:
-
command build
only
:
-
branches
production
:
stage
:
production
script
:
-
command deploy
environment
:
name
:
production
url
:
http://$CI_PROJECT_PATH_SLUG.$KUBE_DOMAIN
when
:
manual
only
:
-
master
staging
:
stage
:
staging
script
:
-
command deploy
environment
:
name
:
staging
url
:
http://$CI_PROJECT_PATH_SLUG-staging.$KUBE_DOMAIN
only
:
-
master
review
:
stage
:
review
script
:
-
command deploy
environment
:
name
:
review/$CI_COMMIT_REF_NAME
url
:
http://$CI_PROJECT_PATH_SLUG-$CI_ENVIRONMENT_SLUG.$KUBE_DOMAIN
on_stop
:
stop_review
only
:
-
branches
except
:
-
master
stop_review
:
stage
:
cleanup
variables
:
GIT_STRATEGY
:
none
script
:
-
command destroy
environment
:
name
:
review/$CI_COMMIT_REF_NAME
action
:
stop
when
:
manual
only
:
-
branches
except
:
-
master
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment