Skip to content

Commit

Permalink
Prepare release 0.9.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Dec 6, 2018
1 parent e175413 commit 0576110
Show file tree
Hide file tree
Showing 9 changed files with 112 additions and 28 deletions.
24 changes: 12 additions & 12 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ import:
- package: github.com/golang/glog
- package: github.com/jpillora/go-ogle-analytics
- package: github.com/kubedb/apimachinery
version: master
version: 0.9.0-rc.2
- package: github.com/kubedb/elasticsearch
version: master
version: 0.9.0-rc.2
- package: github.com/kubedb/etcd
version: master
version: 0.1.0-rc.2
- package: github.com/kubedb/postgres
version: master
version: 0.9.0-rc.2
- package: github.com/kubedb/mysql
version: master
version: 0.2.0-rc.2
- package: github.com/kubedb/mongodb
version: master
version: 0.2.0-rc.2
- package: github.com/kubedb/redis
version: master
version: 0.2.0-rc.2
- package: github.com/kubedb/memcached
version: master
version: 0.2.0-rc.2
- package: github.com/spf13/cobra
version: v0.0.3
- package: github.com/spf13/pflag
Expand Down
2 changes: 1 addition & 1 deletion vendor/github.com/appscode/kutil/meta/cmp.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/appscode/kutil/meta/hash.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/github.com/appscode/kutil/meta/patch.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/appscode/kutil/tools/cli/cli.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 25 additions & 1 deletion vendor/kmodules.xyz/monitoring-agent-api/api/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,32 @@ func (at AgentType) Vendor() string {
type AgentSpec struct {
Agent AgentType `json:"agent,omitempty"`
Prometheus *PrometheusSpec `json:"prometheus,omitempty"`
// Compute Resources required by the exporter container.
// Arguments to the entrypoint.
// The docker image's CMD is used if this is not provided.
// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable
// cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax
// can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded,
// regardless of whether the variable exists or not.
// Cannot be updated.
// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
// +optional
Args []string `json:"args,omitempty"`
// List of environment variables to set in the container.
// Cannot be updated.
// +optional
// +patchMergeKey=name
// +patchStrategy=merge
Env []core.EnvVar `json:"env,omitempty" patchStrategy:"merge" patchMergeKey:"name"`
// Compute Resources required by exporter container.
// Cannot be updated.
// More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
// +optional
Resources core.ResourceRequirements `json:"resources,omitempty"`
// Security options the pod should run with.
// More info: https://kubernetes.io/docs/concepts/policy/security-context/
// More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
// +optional
SecurityContext *core.SecurityContext `json:"securityContext,omitempty"`
}

type PrometheusSpec struct {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0576110

Please sign in to comment.