mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
Fix issues caught by linting
This commit is contained in:
parent
d7d7821c3e
commit
432e4f46a0
13 changed files with 214 additions and 186 deletions
3
Makefile
3
Makefile
|
|
@ -67,7 +67,8 @@ server-image:
|
|||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
gometalinter --config gometalinter.json ./...
|
||||
# CGO_ENABLED=0 required due to: # https://github.com/alecthomas/gometalinter/issues/149#issuecomment-351272924
|
||||
CGO_ENABLED=0 gometalinter.v2 --config gometalinter.json ./...
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
|
|
|
|||
|
|
@ -14,13 +14,13 @@ const (
|
|||
)
|
||||
|
||||
var (
|
||||
// Parts of the image for installation
|
||||
// These values may be overridden by the link flags during build
|
||||
imageNamespace = "argoproj"
|
||||
imageTag = "latest"
|
||||
// Parts of the image for installation
|
||||
// These values may be overridden by the link flags during build
|
||||
//imageNamespace = "argoproj"
|
||||
//imageTag = "latest"
|
||||
)
|
||||
|
||||
// GetKubeClient creates new kubernetes client config using specified config path and config overrides variables
|
||||
// GetKubeConfig creates new kubernetes client config using specified config path and config overrides variables
|
||||
func GetKubeConfig(configPath string, overrides clientcmd.ConfigOverrides) *rest.Config {
|
||||
loadingRules := clientcmd.NewDefaultClientConfigLoadingRules()
|
||||
loadingRules.ExplicitPath = configPath
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ func NewRepoCommand() *cobra.Command {
|
|||
// NewRepoAddCommand returns a new instance of an `argocd repo add` command
|
||||
func NewRepoAddCommand() *cobra.Command {
|
||||
var (
|
||||
repo appsv1.Respository
|
||||
repo appsv1.Repository
|
||||
)
|
||||
var command = &cobra.Command{
|
||||
Use: "add",
|
||||
|
|
@ -73,7 +73,7 @@ func NewRepoAddCommand() *cobra.Command {
|
|||
return command
|
||||
}
|
||||
|
||||
func promptCredentials(repo *appsv1.Respository) {
|
||||
func promptCredentials(repo *appsv1.Repository) {
|
||||
reader := bufio.NewReader(os.Stdin)
|
||||
if repo.Username == "" {
|
||||
fmt.Print("Username: ")
|
||||
|
|
@ -82,7 +82,7 @@ func promptCredentials(repo *appsv1.Respository) {
|
|||
}
|
||||
if repo.Password == "" {
|
||||
fmt.Print("Password: ")
|
||||
bytePassword, _ := terminal.ReadPassword(int(syscall.Stdin))
|
||||
bytePassword, _ := terminal.ReadPassword(syscall.Stdin)
|
||||
repo.Password = string(bytePassword)
|
||||
}
|
||||
}
|
||||
|
|
@ -123,7 +123,7 @@ func NewRepoListCommand() *cobra.Command {
|
|||
for _, r := range repos.Items {
|
||||
fmt.Fprintf(w, "%s\t%s\n", r.Repo, r.Username)
|
||||
}
|
||||
w.Flush()
|
||||
_ = w.Flush()
|
||||
},
|
||||
}
|
||||
return command
|
||||
|
|
|
|||
26
gometalinter.json
Normal file
26
gometalinter.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"Vendor": true,
|
||||
"DisableAll": true,
|
||||
"Deadline": "3m",
|
||||
"Enable": [
|
||||
"vet",
|
||||
"gofmt",
|
||||
"deadcode",
|
||||
"errcheck",
|
||||
"varcheck",
|
||||
"structcheck",
|
||||
"ineffassign",
|
||||
"unconvert",
|
||||
"misspell"
|
||||
],
|
||||
"Skip": [
|
||||
"pkg/client",
|
||||
"vendor/",
|
||||
".pb.go"
|
||||
],
|
||||
"Exclude": [
|
||||
"pkg/client",
|
||||
"vendor/",
|
||||
".pb.go"
|
||||
]
|
||||
}
|
||||
|
|
@ -16,8 +16,8 @@
|
|||
Cluster
|
||||
ClusterList
|
||||
ClusterSpec
|
||||
Respository
|
||||
RespositoryList
|
||||
Repository
|
||||
RepositoryList
|
||||
*/
|
||||
package v1alpha1
|
||||
|
||||
|
|
@ -73,13 +73,13 @@ func (m *ClusterSpec) Reset() { *m = ClusterSpec{} }
|
|||
func (*ClusterSpec) ProtoMessage() {}
|
||||
func (*ClusterSpec) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{7} }
|
||||
|
||||
func (m *Respository) Reset() { *m = Respository{} }
|
||||
func (*Respository) ProtoMessage() {}
|
||||
func (*Respository) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{8} }
|
||||
func (m *Repository) Reset() { *m = Repository{} }
|
||||
func (*Repository) ProtoMessage() {}
|
||||
func (*Repository) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{8} }
|
||||
|
||||
func (m *RespositoryList) Reset() { *m = RespositoryList{} }
|
||||
func (*RespositoryList) ProtoMessage() {}
|
||||
func (*RespositoryList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{9} }
|
||||
func (m *RepositoryList) Reset() { *m = RepositoryList{} }
|
||||
func (*RepositoryList) ProtoMessage() {}
|
||||
func (*RepositoryList) Descriptor() ([]byte, []int) { return fileDescriptorGenerated, []int{9} }
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*Application)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Application")
|
||||
|
|
@ -90,8 +90,8 @@ func init() {
|
|||
proto.RegisterType((*Cluster)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Cluster")
|
||||
proto.RegisterType((*ClusterList)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.ClusterList")
|
||||
proto.RegisterType((*ClusterSpec)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.ClusterSpec")
|
||||
proto.RegisterType((*Respository)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository")
|
||||
proto.RegisterType((*RespositoryList)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.RespositoryList")
|
||||
proto.RegisterType((*Repository)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository")
|
||||
proto.RegisterType((*RepositoryList)(nil), "github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.RepositoryList")
|
||||
}
|
||||
func (m *Application) Marshal() (dAtA []byte, err error) {
|
||||
size := m.Size()
|
||||
|
|
@ -357,7 +357,7 @@ func (m *ClusterSpec) MarshalTo(dAtA []byte) (int, error) {
|
|||
return i, nil
|
||||
}
|
||||
|
||||
func (m *Respository) Marshal() (dAtA []byte, err error) {
|
||||
func (m *Repository) Marshal() (dAtA []byte, err error) {
|
||||
size := m.Size()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalTo(dAtA)
|
||||
|
|
@ -367,7 +367,7 @@ func (m *Respository) Marshal() (dAtA []byte, err error) {
|
|||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *Respository) MarshalTo(dAtA []byte) (int, error) {
|
||||
func (m *Repository) MarshalTo(dAtA []byte) (int, error) {
|
||||
var i int
|
||||
_ = i
|
||||
var l int
|
||||
|
|
@ -387,7 +387,7 @@ func (m *Respository) MarshalTo(dAtA []byte) (int, error) {
|
|||
return i, nil
|
||||
}
|
||||
|
||||
func (m *RespositoryList) Marshal() (dAtA []byte, err error) {
|
||||
func (m *RepositoryList) Marshal() (dAtA []byte, err error) {
|
||||
size := m.Size()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalTo(dAtA)
|
||||
|
|
@ -397,7 +397,7 @@ func (m *RespositoryList) Marshal() (dAtA []byte, err error) {
|
|||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *RespositoryList) MarshalTo(dAtA []byte) (int, error) {
|
||||
func (m *RepositoryList) MarshalTo(dAtA []byte) (int, error) {
|
||||
var i int
|
||||
_ = i
|
||||
var l int
|
||||
|
|
@ -524,7 +524,7 @@ func (m *ClusterSpec) Size() (n int) {
|
|||
return n
|
||||
}
|
||||
|
||||
func (m *Respository) Size() (n int) {
|
||||
func (m *Repository) Size() (n int) {
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.Repo)
|
||||
|
|
@ -536,7 +536,7 @@ func (m *Respository) Size() (n int) {
|
|||
return n
|
||||
}
|
||||
|
||||
func (m *RespositoryList) Size() (n int) {
|
||||
func (m *RepositoryList) Size() (n int) {
|
||||
var l int
|
||||
_ = l
|
||||
l = m.ListMeta.Size()
|
||||
|
|
@ -652,11 +652,11 @@ func (this *ClusterSpec) String() string {
|
|||
}, "")
|
||||
return s
|
||||
}
|
||||
func (this *Respository) String() string {
|
||||
func (this *Repository) String() string {
|
||||
if this == nil {
|
||||
return "nil"
|
||||
}
|
||||
s := strings.Join([]string{`&Respository{`,
|
||||
s := strings.Join([]string{`&Repository{`,
|
||||
`Repo:` + fmt.Sprintf("%v", this.Repo) + `,`,
|
||||
`Username:` + fmt.Sprintf("%v", this.Username) + `,`,
|
||||
`Password:` + fmt.Sprintf("%v", this.Password) + `,`,
|
||||
|
|
@ -664,13 +664,13 @@ func (this *Respository) String() string {
|
|||
}, "")
|
||||
return s
|
||||
}
|
||||
func (this *RespositoryList) String() string {
|
||||
func (this *RepositoryList) String() string {
|
||||
if this == nil {
|
||||
return "nil"
|
||||
}
|
||||
s := strings.Join([]string{`&RespositoryList{`,
|
||||
s := strings.Join([]string{`&RepositoryList{`,
|
||||
`ListMeta:` + strings.Replace(strings.Replace(this.ListMeta.String(), "ListMeta", "k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta", 1), `&`, ``, 1) + `,`,
|
||||
`Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Respository", "Respository", 1), `&`, ``, 1) + `,`,
|
||||
`Items:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Items), "Repository", "Repository", 1), `&`, ``, 1) + `,`,
|
||||
`}`,
|
||||
}, "")
|
||||
return s
|
||||
|
|
@ -1589,7 +1589,7 @@ func (m *ClusterSpec) Unmarshal(dAtA []byte) error {
|
|||
}
|
||||
return nil
|
||||
}
|
||||
func (m *Respository) Unmarshal(dAtA []byte) error {
|
||||
func (m *Repository) Unmarshal(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
|
|
@ -1612,10 +1612,10 @@ func (m *Respository) Unmarshal(dAtA []byte) error {
|
|||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: Respository: wiretype end group for non-group")
|
||||
return fmt.Errorf("proto: Repository: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: Respository: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
return fmt.Errorf("proto: Repository: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
|
|
@ -1726,7 +1726,7 @@ func (m *Respository) Unmarshal(dAtA []byte) error {
|
|||
}
|
||||
return nil
|
||||
}
|
||||
func (m *RespositoryList) Unmarshal(dAtA []byte) error {
|
||||
func (m *RepositoryList) Unmarshal(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
|
|
@ -1749,10 +1749,10 @@ func (m *RespositoryList) Unmarshal(dAtA []byte) error {
|
|||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: RespositoryList: wiretype end group for non-group")
|
||||
return fmt.Errorf("proto: RepositoryList: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: RespositoryList: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
return fmt.Errorf("proto: RepositoryList: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
|
|
@ -1811,7 +1811,7 @@ func (m *RespositoryList) Unmarshal(dAtA []byte) error {
|
|||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Items = append(m.Items, Respository{})
|
||||
m.Items = append(m.Items, Repository{})
|
||||
if err := m.Items[len(m.Items)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
@ -1947,55 +1947,56 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptorGenerated = []byte{
|
||||
// 797 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x54, 0x4d, 0x4f, 0x33, 0x45,
|
||||
0x1c, 0xef, 0xf2, 0x66, 0x99, 0x0a, 0xc2, 0x1a, 0x4d, 0xe5, 0xb0, 0x90, 0x3d, 0x18, 0x0e, 0x30,
|
||||
0x2b, 0x28, 0x46, 0x2f, 0x26, 0x2e, 0x28, 0xc1, 0x60, 0x24, 0x83, 0x26, 0xc6, 0x98, 0xe8, 0xb0,
|
||||
0xfd, 0xb3, 0x1d, 0xba, 0xbb, 0x33, 0x99, 0x99, 0xad, 0xe1, 0xe6, 0xdd, 0x8b, 0x9f, 0xc6, 0xaf,
|
||||
0x20, 0x47, 0x12, 0x34, 0xe1, 0x60, 0x88, 0xd4, 0x6f, 0xe1, 0xc9, 0xec, 0x74, 0xda, 0xdd, 0xb6,
|
||||
0x34, 0x3e, 0x79, 0x20, 0x24, 0xcf, 0x6d, 0x5e, 0x7e, 0xff, 0xdf, 0xef, 0xff, 0x8e, 0x8e, 0x62,
|
||||
0xa6, 0xdb, 0xf9, 0x19, 0x8e, 0x78, 0x1a, 0x50, 0x19, 0x73, 0x21, 0xf9, 0x85, 0x39, 0x6c, 0x47,
|
||||
0xad, 0x40, 0x74, 0xe2, 0x80, 0x0a, 0xa6, 0x02, 0x2a, 0x44, 0xc2, 0x22, 0xaa, 0x19, 0xcf, 0x82,
|
||||
0xee, 0x0e, 0x4d, 0x44, 0x9b, 0xee, 0x04, 0x31, 0x64, 0x20, 0xa9, 0x86, 0x16, 0x16, 0x92, 0x6b,
|
||||
0xee, 0x7e, 0x5c, 0x52, 0xe1, 0x01, 0x95, 0x39, 0xfc, 0x10, 0xb5, 0xb0, 0xe8, 0xc4, 0xb8, 0xa0,
|
||||
0xc2, 0x15, 0x2a, 0x3c, 0xa0, 0x5a, 0xdb, 0xae, 0x78, 0x11, 0xf3, 0x98, 0x07, 0x86, 0xf1, 0x2c,
|
||||
0x3f, 0x37, 0x37, 0x73, 0x31, 0xa7, 0xbe, 0xd2, 0x9a, 0xdf, 0xf9, 0x48, 0x61, 0xc6, 0x0b, 0xdf,
|
||||
0x82, 0x88, 0x4b, 0x08, 0xba, 0x13, 0xde, 0xac, 0x7d, 0x50, 0x62, 0x52, 0x1a, 0xb5, 0x59, 0x06,
|
||||
0xf2, 0xb2, 0x0c, 0x28, 0x05, 0x4d, 0x1f, 0xb2, 0x0a, 0xa6, 0x59, 0xc9, 0x3c, 0xd3, 0x2c, 0x85,
|
||||
0x09, 0x83, 0x0f, 0xff, 0xcf, 0x40, 0x45, 0x6d, 0x48, 0xe9, 0x84, 0xdd, 0xfb, 0xd3, 0xec, 0x72,
|
||||
0xcd, 0x92, 0x80, 0x65, 0x5a, 0x69, 0x39, 0x6e, 0xe4, 0xdf, 0xcc, 0xa0, 0xc6, 0xa7, 0x65, 0xfe,
|
||||
0xdc, 0x1f, 0x51, 0xbd, 0x08, 0xa4, 0x45, 0x35, 0x6d, 0x3a, 0x1b, 0xce, 0x66, 0x63, 0xf7, 0x3d,
|
||||
0xdc, 0xe7, 0xc5, 0x55, 0xde, 0x32, 0xf9, 0x05, 0x1a, 0x77, 0x77, 0xf0, 0x57, 0x67, 0x17, 0x10,
|
||||
0xe9, 0x2f, 0x41, 0xd3, 0xd0, 0xbd, 0xba, 0x5b, 0xaf, 0xf5, 0xee, 0xd6, 0x51, 0xf9, 0x46, 0x86,
|
||||
0xac, 0x6e, 0x82, 0xe6, 0x94, 0x80, 0xa8, 0x39, 0x63, 0xd8, 0xbf, 0xc0, 0x2f, 0x5d, 0x62, 0x5c,
|
||||
0xf1, 0xfb, 0x54, 0x40, 0x14, 0xbe, 0x6e, 0x75, 0xe7, 0x8a, 0x1b, 0x31, 0x2a, 0xae, 0x46, 0x0b,
|
||||
0x4a, 0x53, 0x9d, 0xab, 0xe6, 0xac, 0xd1, 0x3b, 0x7e, 0x22, 0x3d, 0xc3, 0x19, 0x2e, 0x5b, 0xc5,
|
||||
0x85, 0xfe, 0x9d, 0x58, 0x2d, 0xff, 0x2f, 0x07, 0xbd, 0x51, 0x41, 0x1f, 0x33, 0xa5, 0xdd, 0xef,
|
||||
0x27, 0x32, 0x8b, 0x5f, 0x2c, 0xb3, 0x85, 0xb5, 0xc9, 0xeb, 0x8a, 0x55, 0xab, 0x0f, 0x5e, 0x2a,
|
||||
0x59, 0xed, 0xa0, 0x79, 0xa6, 0x21, 0x55, 0xcd, 0x99, 0x8d, 0xd9, 0xcd, 0xc6, 0xee, 0xe7, 0x4f,
|
||||
0x13, 0x66, 0xb8, 0x64, 0x25, 0xe7, 0x8f, 0x0a, 0x72, 0xd2, 0xd7, 0xf0, 0x6f, 0x1c, 0xb4, 0x5a,
|
||||
0x4d, 0x06, 0xcf, 0x65, 0x04, 0x2e, 0xa0, 0xa5, 0x98, 0x69, 0x02, 0x82, 0x9f, 0x42, 0x24, 0x41,
|
||||
0xdb, 0x28, 0x37, 0x2b, 0x51, 0xe2, 0x62, 0xb4, 0x4c, 0x4c, 0x3c, 0xa2, 0x49, 0xbf, 0x3d, 0x08,
|
||||
0x9c, 0x83, 0x84, 0x2c, 0x82, 0xf0, 0x2d, 0x2b, 0xb6, 0x74, 0x58, 0xa5, 0x21, 0xa3, 0xac, 0xee,
|
||||
0x06, 0x9a, 0x13, 0x54, 0xb7, 0x4d, 0xff, 0x2c, 0x96, 0x35, 0x3f, 0xa1, 0xba, 0x4d, 0xcc, 0x8f,
|
||||
0xbb, 0x87, 0x1a, 0x90, 0x75, 0x99, 0xe4, 0x59, 0x0a, 0x99, 0x36, 0x85, 0x5f, 0x0c, 0xdf, 0xb4,
|
||||
0xc0, 0xc6, 0x67, 0xe5, 0x17, 0xa9, 0xe2, 0xfc, 0xdf, 0x47, 0x8b, 0x56, 0x34, 0x91, 0xfb, 0x09,
|
||||
0x5a, 0xd6, 0x54, 0xc6, 0xa0, 0x09, 0x74, 0x99, 0x62, 0x3c, 0x33, 0x41, 0x2d, 0x86, 0x6f, 0x5b,
|
||||
0xb6, 0xe5, 0xaf, 0x47, 0x7e, 0xc9, 0x18, 0xda, 0xb4, 0x9f, 0xc9, 0x8e, 0x6d, 0xf7, 0xa7, 0x6a,
|
||||
0x3f, 0xc3, 0x59, 0x69, 0x3f, 0x73, 0x27, 0x56, 0xcb, 0xff, 0x6d, 0xac, 0x3e, 0xa6, 0x29, 0xdd,
|
||||
0x6f, 0xd1, 0x4a, 0xc4, 0x53, 0x41, 0x25, 0x53, 0x3c, 0x23, 0xa0, 0xf2, 0x44, 0xdb, 0x68, 0xb6,
|
||||
0x2c, 0xcf, 0xca, 0xfe, 0xd8, 0xff, 0xbf, 0x0f, 0xbc, 0x91, 0x09, 0x16, 0xf7, 0x10, 0xad, 0xb6,
|
||||
0xd8, 0xb9, 0x2d, 0xe3, 0x01, 0x68, 0xca, 0x12, 0x65, 0xeb, 0xf3, 0x8e, 0xa5, 0x5e, 0x3d, 0x18,
|
||||
0x07, 0x90, 0x49, 0x1b, 0xff, 0x4f, 0x07, 0xbd, 0xb6, 0x9f, 0xe4, 0x4a, 0x83, 0x7c, 0x86, 0x4d,
|
||||
0xd4, 0x1e, 0xd9, 0x44, 0x8f, 0x19, 0x19, 0xeb, 0xf3, 0xb4, 0x2d, 0xe4, 0xff, 0xe1, 0xa0, 0x86,
|
||||
0xc5, 0x3c, 0xc3, 0x2e, 0x88, 0x47, 0x77, 0x41, 0xf8, 0xf8, 0xc0, 0xa6, 0xec, 0x81, 0xbd, 0x61,
|
||||
0x54, 0x66, 0x58, 0xde, 0x45, 0x0b, 0x0a, 0x64, 0x17, 0xa4, 0x6d, 0xab, 0xb2, 0x3d, 0xcd, 0x2b,
|
||||
0xb1, 0xbf, 0xfe, 0x2f, 0x0e, 0x6a, 0x10, 0x50, 0x82, 0x2b, 0xa6, 0xb9, 0xbc, 0x2c, 0x26, 0x5a,
|
||||
0x82, 0xe0, 0xd6, 0x6a, 0x98, 0xbf, 0x62, 0xe6, 0x89, 0xf9, 0x71, 0xb7, 0x50, 0x3d, 0x57, 0x20,
|
||||
0x33, 0x9a, 0x82, 0xed, 0xab, 0x61, 0xfc, 0xdf, 0xd8, 0x77, 0x32, 0x44, 0x14, 0x68, 0x41, 0x95,
|
||||
0xfa, 0x89, 0xcb, 0x96, 0x1d, 0xfe, 0x21, 0xfa, 0xc4, 0xbe, 0x93, 0x21, 0xc2, 0xec, 0xea, 0x8a,
|
||||
0x37, 0xaf, 0xd6, 0xae, 0xae, 0x38, 0xfe, 0x70, 0x8d, 0x42, 0x7c, 0x75, 0xef, 0xd5, 0xae, 0xef,
|
||||
0xbd, 0xda, 0xed, 0xbd, 0x57, 0xfb, 0xb9, 0xe7, 0x39, 0x57, 0x3d, 0xcf, 0xb9, 0xee, 0x79, 0xce,
|
||||
0x6d, 0xcf, 0x73, 0xfe, 0xee, 0x79, 0xce, 0xaf, 0xff, 0x78, 0xb5, 0xef, 0xea, 0x03, 0xc6, 0xff,
|
||||
0x02, 0x00, 0x00, 0xff, 0xff, 0xa5, 0x62, 0xea, 0xc6, 0xbe, 0x09, 0x00, 0x00,
|
||||
// 806 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0x4d, 0x4f, 0xe3, 0x46,
|
||||
0x18, 0x8e, 0xf9, 0x6a, 0x98, 0x94, 0x14, 0x5c, 0xb5, 0x4a, 0x39, 0x18, 0xe4, 0x43, 0xc5, 0x01,
|
||||
0xc6, 0x85, 0x96, 0xaa, 0xbd, 0x54, 0xaa, 0x81, 0x22, 0x2a, 0xaa, 0xa2, 0xa1, 0x95, 0xaa, 0xaa,
|
||||
0x52, 0x3b, 0x38, 0x2f, 0xce, 0x10, 0xdb, 0x63, 0xcd, 0x8c, 0x53, 0x71, 0xeb, 0xb9, 0xa7, 0xfe,
|
||||
0x9a, 0xfe, 0x85, 0xe5, 0x88, 0xc4, 0xae, 0x84, 0x56, 0x2b, 0xb4, 0x64, 0xff, 0xc5, 0x9e, 0x56,
|
||||
0x9e, 0x4c, 0x62, 0x27, 0x21, 0xda, 0xd5, 0x82, 0xb8, 0xcd, 0xc7, 0xf3, 0x3e, 0xcf, 0xfb, 0x8d,
|
||||
0x0e, 0x42, 0xa6, 0x5a, 0xd9, 0x09, 0x0e, 0x78, 0xec, 0x51, 0x11, 0xf2, 0x54, 0xf0, 0x33, 0x7d,
|
||||
0xd8, 0x08, 0x9a, 0x5e, 0xda, 0x0e, 0x3d, 0x9a, 0x32, 0xe9, 0xd1, 0x34, 0x8d, 0x58, 0x40, 0x15,
|
||||
0xe3, 0x89, 0xd7, 0xd9, 0xa4, 0x51, 0xda, 0xa2, 0x9b, 0x5e, 0x08, 0x09, 0x08, 0xaa, 0xa0, 0x89,
|
||||
0x53, 0xc1, 0x15, 0xb7, 0xbf, 0x2d, 0xa8, 0x70, 0x9f, 0x4a, 0x1f, 0xfe, 0x0c, 0x9a, 0x38, 0x6d,
|
||||
0x87, 0x38, 0xa7, 0xc2, 0x25, 0x2a, 0xdc, 0xa7, 0x5a, 0xde, 0x28, 0x79, 0x11, 0xf2, 0x90, 0x7b,
|
||||
0x9a, 0xf1, 0x24, 0x3b, 0xd5, 0x37, 0x7d, 0xd1, 0xa7, 0x9e, 0xd2, 0xb2, 0xdb, 0xfe, 0x46, 0x62,
|
||||
0xc6, 0x73, 0xdf, 0xbc, 0x80, 0x0b, 0xf0, 0x3a, 0x63, 0xde, 0x2c, 0x7f, 0x55, 0x60, 0x62, 0x1a,
|
||||
0xb4, 0x58, 0x02, 0xe2, 0xbc, 0x08, 0x28, 0x06, 0x45, 0xef, 0xb2, 0xf2, 0x26, 0x59, 0x89, 0x2c,
|
||||
0x51, 0x2c, 0x86, 0x31, 0x83, 0xaf, 0xdf, 0x66, 0x20, 0x83, 0x16, 0xc4, 0x74, 0xcc, 0xee, 0xcb,
|
||||
0x49, 0x76, 0x99, 0x62, 0x91, 0xc7, 0x12, 0x25, 0x95, 0x18, 0x35, 0x72, 0xaf, 0xa6, 0x50, 0xed,
|
||||
0xfb, 0x22, 0x7f, 0xf6, 0x5f, 0xa8, 0x9a, 0x07, 0xd2, 0xa4, 0x8a, 0x36, 0xac, 0x55, 0x6b, 0xad,
|
||||
0xb6, 0xf5, 0x05, 0xee, 0xf1, 0xe2, 0x32, 0x6f, 0x91, 0xfc, 0x1c, 0x8d, 0x3b, 0x9b, 0xf8, 0xe7,
|
||||
0x93, 0x33, 0x08, 0xd4, 0x4f, 0xa0, 0xa8, 0x6f, 0x5f, 0xdc, 0xac, 0x54, 0xba, 0x37, 0x2b, 0xa8,
|
||||
0x78, 0x23, 0x03, 0x56, 0x3b, 0x42, 0x33, 0x32, 0x85, 0xa0, 0x31, 0xa5, 0xd9, 0x7f, 0xc4, 0xef,
|
||||
0x5d, 0x62, 0x5c, 0xf2, 0xfb, 0x38, 0x85, 0xc0, 0xff, 0xd0, 0xe8, 0xce, 0xe4, 0x37, 0xa2, 0x55,
|
||||
0x6c, 0x85, 0xe6, 0xa4, 0xa2, 0x2a, 0x93, 0x8d, 0x69, 0xad, 0x77, 0xf8, 0x40, 0x7a, 0x9a, 0xd3,
|
||||
0xaf, 0x1b, 0xc5, 0xb9, 0xde, 0x9d, 0x18, 0x2d, 0xf7, 0x85, 0x85, 0x3e, 0x2a, 0xa1, 0x0f, 0x99,
|
||||
0x54, 0xf6, 0x1f, 0x63, 0x99, 0xc5, 0xef, 0x96, 0xd9, 0xdc, 0x5a, 0xe7, 0x75, 0xd1, 0xa8, 0x55,
|
||||
0xfb, 0x2f, 0xa5, 0xac, 0xb6, 0xd1, 0x2c, 0x53, 0x10, 0xcb, 0xc6, 0xd4, 0xea, 0xf4, 0x5a, 0x6d,
|
||||
0xeb, 0x87, 0x87, 0x09, 0xd3, 0x5f, 0x30, 0x92, 0xb3, 0x07, 0x39, 0x39, 0xe9, 0x69, 0xb8, 0x57,
|
||||
0x16, 0x5a, 0x2a, 0x27, 0x83, 0x67, 0x22, 0x00, 0x1b, 0xd0, 0x42, 0xc8, 0x14, 0x81, 0x94, 0x1f,
|
||||
0x43, 0x20, 0x40, 0x99, 0x28, 0xd7, 0x4a, 0x51, 0xe2, 0x7c, 0xb4, 0x74, 0x4c, 0x3c, 0xa0, 0x51,
|
||||
0xaf, 0x3d, 0x08, 0x9c, 0x82, 0x80, 0x24, 0x00, 0xff, 0x13, 0x23, 0xb6, 0xb0, 0x5f, 0xa6, 0x21,
|
||||
0xc3, 0xac, 0xf6, 0x2a, 0x9a, 0x49, 0xa9, 0x6a, 0xe9, 0xfe, 0x99, 0x2f, 0x6a, 0x7e, 0x44, 0x55,
|
||||
0x8b, 0xe8, 0x1f, 0x7b, 0x1b, 0xd5, 0x20, 0xe9, 0x30, 0xc1, 0x93, 0x18, 0x12, 0xa5, 0x0b, 0x3f,
|
||||
0xef, 0x7f, 0x6c, 0x80, 0xb5, 0xbd, 0xe2, 0x8b, 0x94, 0x71, 0xee, 0x93, 0xe1, 0xa2, 0xe5, 0x4d,
|
||||
0x64, 0x7f, 0x87, 0xea, 0x8a, 0x8a, 0x10, 0x14, 0x81, 0x0e, 0x93, 0x8c, 0x27, 0x3a, 0xa8, 0x79,
|
||||
0xff, 0x53, 0xc3, 0x56, 0xff, 0x65, 0xe8, 0x97, 0x8c, 0xa0, 0x75, 0xfb, 0xe9, 0xec, 0x98, 0x76,
|
||||
0x7f, 0xa8, 0xf6, 0xd3, 0x9c, 0xa5, 0xf6, 0xd3, 0x77, 0x62, 0xb4, 0xdc, 0xff, 0x47, 0xea, 0xa3,
|
||||
0x9b, 0xd2, 0xfe, 0x0d, 0x2d, 0x06, 0x3c, 0x4e, 0xa9, 0x60, 0x92, 0x27, 0x04, 0x64, 0x16, 0x29,
|
||||
0x13, 0xcd, 0xba, 0xe1, 0x59, 0xdc, 0x19, 0xf9, 0x7f, 0x7d, 0xc7, 0x1b, 0x19, 0x63, 0xb1, 0xf7,
|
||||
0xd1, 0x52, 0x93, 0x9d, 0x9a, 0x32, 0xee, 0x82, 0xa2, 0x2c, 0x92, 0xa6, 0x3e, 0x9f, 0x19, 0xea,
|
||||
0xa5, 0xdd, 0x51, 0x00, 0x19, 0xb7, 0x71, 0x9f, 0x59, 0xe8, 0x83, 0x9d, 0x28, 0x93, 0x0a, 0xc4,
|
||||
0x23, 0x6c, 0xa2, 0xd6, 0xd0, 0x26, 0xba, 0xcf, 0xc8, 0x18, 0x9f, 0x27, 0x6d, 0x21, 0xf7, 0xa9,
|
||||
0x85, 0x6a, 0x06, 0xf3, 0x08, 0xbb, 0x20, 0x1c, 0xde, 0x05, 0xfe, 0xfd, 0x03, 0x9b, 0xb0, 0x07,
|
||||
0xb6, 0x07, 0x51, 0xe9, 0x61, 0xf9, 0x1c, 0xcd, 0x49, 0x10, 0x1d, 0x10, 0xa6, 0xad, 0x8a, 0xf6,
|
||||
0xd4, 0xaf, 0xc4, 0xfc, 0xba, 0xff, 0x5a, 0x08, 0xe5, 0x03, 0x2d, 0x99, 0xe2, 0xe2, 0x3c, 0x1f,
|
||||
0x68, 0x01, 0x29, 0x37, 0x46, 0x83, 0xf4, 0xe5, 0x08, 0xa2, 0x7f, 0xec, 0x75, 0x54, 0xcd, 0x24,
|
||||
0x88, 0x84, 0xc6, 0x60, 0xda, 0x6a, 0x10, 0xfe, 0xaf, 0xe6, 0x9d, 0x0c, 0x10, 0x39, 0x3a, 0xa5,
|
||||
0x52, 0xfe, 0xcd, 0x45, 0xd3, 0xcc, 0xfe, 0x00, 0x7d, 0x64, 0xde, 0xc9, 0x00, 0xe1, 0x3e, 0xb7,
|
||||
0x50, 0xbd, 0x70, 0xe6, 0x11, 0xaa, 0x73, 0x36, 0x5c, 0x9d, 0xbd, 0x7b, 0x54, 0xa7, 0xf0, 0xfb,
|
||||
0xee, 0x02, 0xf9, 0xf8, 0xe2, 0xd6, 0xa9, 0x5c, 0xde, 0x3a, 0x95, 0xeb, 0x5b, 0xa7, 0xf2, 0x4f,
|
||||
0xd7, 0xb1, 0x2e, 0xba, 0x8e, 0x75, 0xd9, 0x75, 0xac, 0xeb, 0xae, 0x63, 0xbd, 0xec, 0x3a, 0xd6,
|
||||
0x7f, 0xaf, 0x9c, 0xca, 0xef, 0xd5, 0x3e, 0xe1, 0x9b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x61, 0xb1,
|
||||
0x2a, 0xec, 0xbb, 0x09, 0x00, 0x00,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -86,8 +86,8 @@ message ClusterSpec {
|
|||
optional string server = 1;
|
||||
}
|
||||
|
||||
// Respository is a Git repository holding application configurations
|
||||
message Respository {
|
||||
// Repository is a Git repository holding application configurations
|
||||
message Repository {
|
||||
optional string repo = 1;
|
||||
|
||||
optional string username = 2;
|
||||
|
|
@ -95,10 +95,10 @@ message Respository {
|
|||
optional string password = 3;
|
||||
}
|
||||
|
||||
// RespositoryList is a collection of Repositories.
|
||||
message RespositoryList {
|
||||
// RepositoryList is a collection of Repositories.
|
||||
message RepositoryList {
|
||||
optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
|
||||
|
||||
repeated Respository items = 2;
|
||||
repeated Repository items = 2;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -83,15 +83,15 @@ type ClusterSpec struct {
|
|||
Server string `json:"server" protobuf:"bytes,1,opt,name=server"`
|
||||
}
|
||||
|
||||
// Respository is a Git repository holding application configurations
|
||||
type Respository struct {
|
||||
// Repository is a Git repository holding application configurations
|
||||
type Repository struct {
|
||||
Repo string `json:"repo" protobuf:"bytes,1,opt,name=repo"`
|
||||
Username string `json:"username" protobuf:"bytes,2,opt,name=username"`
|
||||
Password string `json:"password" protobuf:"bytes,3,opt,name=password"`
|
||||
}
|
||||
|
||||
// RespositoryList is a collection of Repositories.
|
||||
type RespositoryList struct {
|
||||
// RepositoryList is a collection of Repositories.
|
||||
type RepositoryList struct {
|
||||
metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
|
||||
Items []Respository `json:"items" protobuf:"bytes,2,rep,name=items"`
|
||||
Items []Repository `json:"items" protobuf:"bytes,2,rep,name=items"`
|
||||
}
|
||||
|
|
|
|||
|
|
@ -196,39 +196,39 @@ func (in *ClusterSpec) DeepCopy() *ClusterSpec {
|
|||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *Respository) DeepCopyInto(out *Respository) {
|
||||
func (in *Repository) DeepCopyInto(out *Repository) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Respository.
|
||||
func (in *Respository) DeepCopy() *Respository {
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Repository.
|
||||
func (in *Repository) DeepCopy() *Repository {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(Respository)
|
||||
out := new(Repository)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *RespositoryList) DeepCopyInto(out *RespositoryList) {
|
||||
func (in *RepositoryList) DeepCopyInto(out *RepositoryList) {
|
||||
*out = *in
|
||||
out.ListMeta = in.ListMeta
|
||||
if in.Items != nil {
|
||||
in, out := &in.Items, &out.Items
|
||||
*out = make([]Respository, len(*in))
|
||||
*out = make([]Repository, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RespositoryList.
|
||||
func (in *RespositoryList) DeepCopy() *RespositoryList {
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RepositoryList.
|
||||
func (in *RepositoryList) DeepCopy() *RepositoryList {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(RespositoryList)
|
||||
out := new(RepositoryList)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ func NewServer(namespace string, kubeclientset kubernetes.Interface, appclientse
|
|||
}
|
||||
|
||||
// List returns list of repositories
|
||||
func (s *Server) List(ctx context.Context, q *RepoQuery) (*appsv1.RespositoryList, error) {
|
||||
func (s *Server) List(ctx context.Context, q *RepoQuery) (*appsv1.RepositoryList, error) {
|
||||
listOpts := metav1.ListOptions{}
|
||||
labelSelector := labels.NewSelector()
|
||||
req, err := labels.NewRequirement(common.LabelKeySecretType, selection.Equals, []string{common.SecretTypeRepository})
|
||||
|
|
@ -50,8 +50,8 @@ func (s *Server) List(ctx context.Context, q *RepoQuery) (*appsv1.RespositoryLis
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
repoList := appsv1.RespositoryList{
|
||||
Items: make([]appsv1.Respository, len(repoSecrets.Items)),
|
||||
repoList := appsv1.RepositoryList{
|
||||
Items: make([]appsv1.Repository, len(repoSecrets.Items)),
|
||||
}
|
||||
for i, repoSec := range repoSecrets.Items {
|
||||
repoList.Items[i] = *secretToRepo(&repoSec)
|
||||
|
|
@ -60,7 +60,7 @@ func (s *Server) List(ctx context.Context, q *RepoQuery) (*appsv1.RespositoryLis
|
|||
}
|
||||
|
||||
// Create creates a repository
|
||||
func (s *Server) Create(ctx context.Context, r *appsv1.Respository) (*appsv1.Respository, error) {
|
||||
func (s *Server) Create(ctx context.Context, r *appsv1.Repository) (*appsv1.Repository, error) {
|
||||
repoURL := git.NormalizeGitURL(r.Repo)
|
||||
err := git.TestRepo(repoURL, r.Username, r.Password)
|
||||
if err != nil {
|
||||
|
|
@ -90,7 +90,7 @@ func (s *Server) Create(ctx context.Context, r *appsv1.Respository) (*appsv1.Res
|
|||
}
|
||||
|
||||
// Get returns a repository by URL
|
||||
func (s *Server) Get(ctx context.Context, q *RepoQuery) (*appsv1.Respository, error) {
|
||||
func (s *Server) Get(ctx context.Context, q *RepoQuery) (*appsv1.Repository, error) {
|
||||
secName := repoURLToSecretName(q.Repo)
|
||||
repoSecret, err := s.kubeclientset.CoreV1().Secrets(s.ns).Get(secName, metav1.GetOptions{})
|
||||
if err != nil {
|
||||
|
|
@ -100,7 +100,7 @@ func (s *Server) Get(ctx context.Context, q *RepoQuery) (*appsv1.Respository, er
|
|||
}
|
||||
|
||||
// Update updates a repository
|
||||
func (s *Server) Update(ctx context.Context, r *appsv1.Respository) (*appsv1.Respository, error) {
|
||||
func (s *Server) Update(ctx context.Context, r *appsv1.Repository) (*appsv1.Repository, error) {
|
||||
secName := repoURLToSecretName(r.Repo)
|
||||
repoSecret, err := s.kubeclientset.CoreV1().Secrets(s.ns).Get(secName, metav1.GetOptions{})
|
||||
if err != nil {
|
||||
|
|
@ -124,7 +124,7 @@ func (s *Server) Update(ctx context.Context, r *appsv1.Respository) (*appsv1.Res
|
|||
}
|
||||
|
||||
// UpdateREST updates a repository (from a REST request)
|
||||
func (s *Server) UpdateREST(ctx context.Context, r *RepoUpdateRequest) (*appsv1.Respository, error) {
|
||||
func (s *Server) UpdateREST(ctx context.Context, r *RepoUpdateRequest) (*appsv1.Repository, error) {
|
||||
return s.Update(ctx, r.Repo)
|
||||
}
|
||||
|
||||
|
|
@ -147,8 +147,8 @@ func repoURLToSecretName(repo string) string {
|
|||
}
|
||||
|
||||
// secretToRepo converts a secret into a repository object
|
||||
func secretToRepo(s *apiv1.Secret) *appsv1.Respository {
|
||||
repo := appsv1.Respository{
|
||||
func secretToRepo(s *apiv1.Secret) *appsv1.Repository {
|
||||
repo := appsv1.Repository{
|
||||
Repo: string(s.Data["repository"]),
|
||||
Username: string(s.Data["username"]),
|
||||
Password: string(s.Data["password"]),
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ var _ = math.Inf
|
|||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||||
|
||||
// RepoQuery is a query for respository resources
|
||||
// RepoQuery is a query for Repository resources
|
||||
type RepoQuery struct {
|
||||
Repo string `protobuf:"bytes,1,opt,name=repo" json:"repo,omitempty"`
|
||||
}
|
||||
|
|
@ -68,8 +68,8 @@ func (*RepoResponse) ProtoMessage() {}
|
|||
func (*RepoResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
||||
|
||||
type RepoUpdateRequest struct {
|
||||
Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
|
||||
Repo *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository `protobuf:"bytes,2,opt,name=repo" json:"repo,omitempty"`
|
||||
Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
|
||||
Repo *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository `protobuf:"bytes,2,opt,name=repo" json:"repo,omitempty"`
|
||||
}
|
||||
|
||||
func (m *RepoUpdateRequest) Reset() { *m = RepoUpdateRequest{} }
|
||||
|
|
@ -84,7 +84,7 @@ func (m *RepoUpdateRequest) GetUrl() string {
|
|||
return ""
|
||||
}
|
||||
|
||||
func (m *RepoUpdateRequest) GetRepo() *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository {
|
||||
func (m *RepoUpdateRequest) GetRepo() *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository {
|
||||
if m != nil {
|
||||
return m.Repo
|
||||
}
|
||||
|
|
@ -109,15 +109,15 @@ const _ = grpc.SupportPackageIsVersion4
|
|||
|
||||
type RepositoryServiceClient interface {
|
||||
// List returns list of repos
|
||||
List(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RespositoryList, error)
|
||||
List(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RepositoryList, error)
|
||||
// Create creates a repo
|
||||
Create(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
Create(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Get returns a repo by name
|
||||
Get(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
Get(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Update updates a repo
|
||||
Update(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
Update(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Update updates a repo (special handler intended to be used only by the gRPC gateway)
|
||||
UpdateREST(ctx context.Context, in *RepoUpdateRequest, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
UpdateREST(ctx context.Context, in *RepoUpdateRequest, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Delete updates a repo
|
||||
Delete(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*RepoResponse, error)
|
||||
}
|
||||
|
|
@ -130,8 +130,8 @@ func NewRepositoryServiceClient(cc *grpc.ClientConn) RepositoryServiceClient {
|
|||
return &repositoryServiceClient{cc}
|
||||
}
|
||||
|
||||
func (c *repositoryServiceClient) List(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RespositoryList, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RespositoryList)
|
||||
func (c *repositoryServiceClient) List(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RepositoryList, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RepositoryList)
|
||||
err := grpc.Invoke(ctx, "/repository.RepositoryService/List", in, out, c.cc, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
@ -139,8 +139,8 @@ func (c *repositoryServiceClient) List(ctx context.Context, in *RepoQuery, opts
|
|||
return out, nil
|
||||
}
|
||||
|
||||
func (c *repositoryServiceClient) Create(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository)
|
||||
func (c *repositoryServiceClient) Create(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository)
|
||||
err := grpc.Invoke(ctx, "/repository.RepositoryService/Create", in, out, c.cc, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
@ -148,8 +148,8 @@ func (c *repositoryServiceClient) Create(ctx context.Context, in *github_com_arg
|
|||
return out, nil
|
||||
}
|
||||
|
||||
func (c *repositoryServiceClient) Get(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository)
|
||||
func (c *repositoryServiceClient) Get(ctx context.Context, in *RepoQuery, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository)
|
||||
err := grpc.Invoke(ctx, "/repository.RepositoryService/Get", in, out, c.cc, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
@ -157,8 +157,8 @@ func (c *repositoryServiceClient) Get(ctx context.Context, in *RepoQuery, opts .
|
|||
return out, nil
|
||||
}
|
||||
|
||||
func (c *repositoryServiceClient) Update(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository)
|
||||
func (c *repositoryServiceClient) Update(ctx context.Context, in *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository)
|
||||
err := grpc.Invoke(ctx, "/repository.RepositoryService/Update", in, out, c.cc, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
@ -166,8 +166,8 @@ func (c *repositoryServiceClient) Update(ctx context.Context, in *github_com_arg
|
|||
return out, nil
|
||||
}
|
||||
|
||||
func (c *repositoryServiceClient) UpdateREST(ctx context.Context, in *RepoUpdateRequest, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository)
|
||||
func (c *repositoryServiceClient) UpdateREST(ctx context.Context, in *RepoUpdateRequest, opts ...grpc.CallOption) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error) {
|
||||
out := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository)
|
||||
err := grpc.Invoke(ctx, "/repository.RepositoryService/UpdateREST", in, out, c.cc, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
@ -188,15 +188,15 @@ func (c *repositoryServiceClient) Delete(ctx context.Context, in *RepoQuery, opt
|
|||
|
||||
type RepositoryServiceServer interface {
|
||||
// List returns list of repos
|
||||
List(context.Context, *RepoQuery) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RespositoryList, error)
|
||||
List(context.Context, *RepoQuery) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.RepositoryList, error)
|
||||
// Create creates a repo
|
||||
Create(context.Context, *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
Create(context.Context, *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Get returns a repo by name
|
||||
Get(context.Context, *RepoQuery) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
Get(context.Context, *RepoQuery) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Update updates a repo
|
||||
Update(context.Context, *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
Update(context.Context, *github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Update updates a repo (special handler intended to be used only by the gRPC gateway)
|
||||
UpdateREST(context.Context, *RepoUpdateRequest) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository, error)
|
||||
UpdateREST(context.Context, *RepoUpdateRequest) (*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository, error)
|
||||
// Delete updates a repo
|
||||
Delete(context.Context, *RepoQuery) (*RepoResponse, error)
|
||||
}
|
||||
|
|
@ -224,7 +224,7 @@ func _RepositoryService_List_Handler(srv interface{}, ctx context.Context, dec f
|
|||
}
|
||||
|
||||
func _RepositoryService_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository)
|
||||
in := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
@ -236,7 +236,7 @@ func _RepositoryService_Create_Handler(srv interface{}, ctx context.Context, dec
|
|||
FullMethod: "/repository.RepositoryService/Create",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(RepositoryServiceServer).Create(ctx, req.(*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository))
|
||||
return srv.(RepositoryServiceServer).Create(ctx, req.(*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
|
@ -260,7 +260,7 @@ func _RepositoryService_Get_Handler(srv interface{}, ctx context.Context, dec fu
|
|||
}
|
||||
|
||||
func _RepositoryService_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository)
|
||||
in := new(github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
@ -272,7 +272,7 @@ func _RepositoryService_Update_Handler(srv interface{}, ctx context.Context, dec
|
|||
FullMethod: "/repository.RepositoryService/Update",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(RepositoryServiceServer).Update(ctx, req.(*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Respository))
|
||||
return srv.(RepositoryServiceServer).Update(ctx, req.(*github_com_argoproj_argo_cd_pkg_apis_application_v1alpha1.Repository))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
|
@ -349,35 +349,35 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
|
|||
func init() { proto.RegisterFile("server/repository/repository.proto", fileDescriptor0) }
|
||||
|
||||
var fileDescriptor0 = []byte{
|
||||
// 469 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x94, 0xbf, 0x6e, 0x14, 0x31,
|
||||
0x10, 0xc6, 0x71, 0x12, 0x1d, 0x8a, 0x41, 0x08, 0x46, 0x01, 0x85, 0x25, 0x51, 0x22, 0xd3, 0x9c,
|
||||
0x22, 0xc5, 0xd6, 0x85, 0x06, 0xa5, 0xe4, 0xaf, 0x40, 0x34, 0x5c, 0xa0, 0x49, 0x01, 0x72, 0xf6,
|
||||
0x46, 0x8e, 0xb9, 0x65, 0x6d, 0x6c, 0xef, 0x4a, 0x11, 0x4a, 0x41, 0x1a, 0x44, 0x4d, 0x87, 0xc4,
|
||||
0x83, 0xf0, 0x1c, 0xbc, 0x02, 0x0f, 0x82, 0xec, 0xdd, 0xe4, 0x8e, 0xe4, 0x72, 0xd5, 0x16, 0x74,
|
||||
0xdf, 0xce, 0xda, 0x33, 0x3f, 0x7f, 0xe3, 0x31, 0x65, 0x1e, 0x5d, 0x8d, 0x4e, 0x38, 0xb4, 0xc6,
|
||||
0xeb, 0x60, 0xdc, 0xd1, 0x94, 0xe4, 0xd6, 0x99, 0x60, 0x80, 0x4e, 0x22, 0xd9, 0x8a, 0x32, 0xca,
|
||||
0xa4, 0xb0, 0x88, 0xaa, 0x59, 0x91, 0xad, 0x29, 0x63, 0x54, 0x81, 0x42, 0x5a, 0x2d, 0x64, 0x59,
|
||||
0x9a, 0x20, 0x83, 0x36, 0xa5, 0x6f, 0xff, 0xb2, 0xf1, 0x43, 0xcf, 0xb5, 0x49, 0x7f, 0x73, 0xe3,
|
||||
0x50, 0xd4, 0x03, 0xa1, 0xb0, 0x44, 0x27, 0x03, 0x8e, 0xda, 0x35, 0x2f, 0x94, 0x0e, 0x87, 0xd5,
|
||||
0x01, 0xcf, 0xcd, 0x47, 0x21, 0x5d, 0x2a, 0xf1, 0x21, 0x89, 0xed, 0x7c, 0x24, 0xec, 0x58, 0xc5,
|
||||
0xcd, 0x5e, 0x48, 0x6b, 0x0b, 0x9d, 0xa7, 0xe4, 0xa2, 0x1e, 0xc8, 0xc2, 0x1e, 0xca, 0x0b, 0xa9,
|
||||
0xd8, 0x06, 0x5d, 0x1e, 0xa2, 0x35, 0xaf, 0x2b, 0x74, 0x47, 0x00, 0x74, 0x29, 0xd2, 0xaf, 0x92,
|
||||
0x4d, 0xd2, 0x5f, 0x1e, 0x26, 0xcd, 0x6e, 0xd0, 0xeb, 0x71, 0xc1, 0x10, 0xbd, 0x35, 0xa5, 0x47,
|
||||
0xf6, 0x85, 0xd0, 0x5b, 0x31, 0xf0, 0xd6, 0x8e, 0x64, 0xc0, 0x21, 0x7e, 0xaa, 0xd0, 0x07, 0xb8,
|
||||
0x49, 0x17, 0x2b, 0x57, 0xb4, 0x1b, 0xa3, 0x84, 0xfd, 0x36, 0xd7, 0xc2, 0x26, 0xe9, 0x5f, 0xdb,
|
||||
0x79, 0xc6, 0x27, 0xc8, 0xfc, 0x14, 0x39, 0x89, 0xf7, 0xf9, 0x88, 0xdb, 0xb1, 0xe2, 0x11, 0x99,
|
||||
0x4f, 0x21, 0xf3, 0x53, 0x64, 0x9e, 0x4a, 0x37, 0x8e, 0x36, 0x4c, 0x3b, 0x27, 0x57, 0x1b, 0x86,
|
||||
0x26, 0xb8, 0x87, 0xae, 0xd6, 0x39, 0xc2, 0x57, 0x42, 0x97, 0x5e, 0x69, 0x1f, 0xe0, 0x36, 0x9f,
|
||||
0xea, 0xca, 0xd9, 0xe9, 0xb2, 0x97, 0xdd, 0x30, 0xc4, 0x12, 0x6c, 0xed, 0xe4, 0xf7, 0x9f, 0xef,
|
||||
0x0b, 0x77, 0x60, 0x25, 0xf5, 0xa9, 0x1e, 0x4c, 0xee, 0x81, 0x46, 0x0f, 0xbf, 0x08, 0xed, 0x3d,
|
||||
0x76, 0x28, 0x03, 0x42, 0x47, 0x07, 0xcf, 0x3a, 0xca, 0xc3, 0x36, 0x12, 0xf8, 0x5d, 0x36, 0x13,
|
||||
0x7c, 0x97, 0x6c, 0xc1, 0x37, 0x42, 0x17, 0x9f, 0xe3, 0xa5, 0x26, 0x76, 0xc5, 0x71, 0x3f, 0x71,
|
||||
0xac, 0xc3, 0xbd, 0x59, 0x1c, 0xe2, 0x73, 0xfc, 0x3a, 0x86, 0x1f, 0x84, 0xf6, 0x9a, 0x7b, 0xf6,
|
||||
0xdf, 0xf9, 0x78, 0x05, 0x7e, 0x12, 0x4a, 0xdb, 0x21, 0x78, 0xba, 0xf7, 0x06, 0xd6, 0xcf, 0xfb,
|
||||
0xf5, 0xcf, 0x80, 0x74, 0x56, 0xb7, 0x9f, 0x7c, 0x63, 0x59, 0x36, 0xdb, 0xb7, 0xca, 0x15, 0xc7,
|
||||
0xbb, 0x69, 0x48, 0xe0, 0x1d, 0xed, 0x3d, 0xc1, 0x02, 0x03, 0x5e, 0xd6, 0xca, 0xd5, 0xf3, 0xe1,
|
||||
0xb3, 0x19, 0x6f, 0x9b, 0xb3, 0x35, 0xaf, 0x39, 0x8f, 0xc4, 0xfe, 0xf6, 0xbc, 0x67, 0xe8, 0xc2,
|
||||
0x53, 0x79, 0xd0, 0x4b, 0x2f, 0xce, 0x83, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x09, 0x43, 0xda,
|
||||
0x60, 0x46, 0x05, 0x00, 0x00,
|
||||
// 470 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x94, 0x41, 0x6b, 0x14, 0x31,
|
||||
0x14, 0xc7, 0x4d, 0x5b, 0x06, 0x1a, 0x45, 0xf4, 0x51, 0xa5, 0x8e, 0x2d, 0x2d, 0xf1, 0xb2, 0x14,
|
||||
0x9a, 0xb0, 0xf5, 0x22, 0x3d, 0xaa, 0x45, 0x0a, 0x5e, 0x9c, 0xea, 0x41, 0x0f, 0x4a, 0x3a, 0xfb,
|
||||
0x98, 0xc6, 0x1d, 0x27, 0x31, 0xc9, 0x0c, 0x14, 0x29, 0x88, 0x07, 0xf1, 0xee, 0xc5, 0x83, 0xdf,
|
||||
0xc3, 0x0f, 0xe2, 0x57, 0xf0, 0x5b, 0x78, 0x91, 0x64, 0xa6, 0xbb, 0x6b, 0xbb, 0xed, 0x69, 0x0e,
|
||||
0xbd, 0xfd, 0xe7, 0x4d, 0xf2, 0xf2, 0xcb, 0xff, 0xe5, 0x3d, 0xca, 0x1c, 0xda, 0x06, 0xad, 0xb0,
|
||||
0x68, 0xb4, 0x53, 0x5e, 0xdb, 0xe3, 0x19, 0xc9, 0x8d, 0xd5, 0x5e, 0x03, 0x9d, 0x46, 0xd2, 0x95,
|
||||
0x42, 0x17, 0x3a, 0x86, 0x45, 0x50, 0xed, 0x8a, 0x74, 0xad, 0xd0, 0xba, 0x28, 0x51, 0x48, 0xa3,
|
||||
0x84, 0xac, 0x2a, 0xed, 0xa5, 0x57, 0xba, 0x72, 0xdd, 0x5f, 0x36, 0x7e, 0xe4, 0xb8, 0xd2, 0xf1,
|
||||
0x6f, 0xae, 0x2d, 0x8a, 0x66, 0x28, 0x0a, 0xac, 0xd0, 0x4a, 0x8f, 0xa3, 0x6e, 0xcd, 0x7e, 0xa1,
|
||||
0xfc, 0x51, 0x7d, 0xc8, 0x73, 0xfd, 0x41, 0x48, 0x1b, 0x8f, 0x78, 0x1f, 0xc5, 0x76, 0x3e, 0x12,
|
||||
0x66, 0x5c, 0x84, 0xcd, 0x4e, 0x48, 0x63, 0x4a, 0x95, 0xc7, 0xe4, 0xa2, 0x19, 0xca, 0xd2, 0x1c,
|
||||
0xc9, 0x73, 0xa9, 0xd8, 0x06, 0x5d, 0xce, 0xd0, 0xe8, 0x17, 0x35, 0xda, 0x63, 0x00, 0xba, 0x14,
|
||||
0xe8, 0x57, 0xc9, 0x26, 0x19, 0x2c, 0x67, 0x51, 0xb3, 0x9b, 0xf4, 0x46, 0x58, 0x90, 0xa1, 0x33,
|
||||
0xba, 0x72, 0xc8, 0x3e, 0x13, 0x7a, 0x3b, 0x04, 0x5e, 0x99, 0x91, 0xf4, 0x98, 0xe1, 0xc7, 0x1a,
|
||||
0x9d, 0x87, 0x5b, 0x74, 0xb1, 0xb6, 0x65, 0xb7, 0x31, 0x48, 0x78, 0xdd, 0xe5, 0x5a, 0xd8, 0x24,
|
||||
0x83, 0xeb, 0x3b, 0x7b, 0x7c, 0x8a, 0xcc, 0x4f, 0x91, 0xa3, 0x78, 0x97, 0x8f, 0xb8, 0x19, 0x17,
|
||||
0x3c, 0x20, 0xf3, 0x19, 0x64, 0x7e, 0x8a, 0xcc, 0xb3, 0x89, 0xa1, 0x2d, 0xd2, 0xce, 0xdf, 0xa4,
|
||||
0x45, 0x68, 0x83, 0x07, 0x68, 0x1b, 0x95, 0x23, 0x7c, 0x25, 0x74, 0xe9, 0xb9, 0x72, 0x1e, 0xee,
|
||||
0xf0, 0x99, 0xa2, 0x4c, 0x2e, 0x97, 0xee, 0xf7, 0x82, 0x10, 0x4e, 0x60, 0x6b, 0x5f, 0x7e, 0xff,
|
||||
0xf9, 0xbe, 0x70, 0x17, 0x56, 0x62, 0x95, 0x9a, 0xe1, 0xf4, 0x15, 0x28, 0x74, 0xf0, 0x8b, 0xd0,
|
||||
0xe4, 0x89, 0x45, 0xe9, 0x11, 0xfa, 0xb9, 0x76, 0xda, 0x4f, 0x1a, 0xb6, 0x11, 0xb1, 0xef, 0xb1,
|
||||
0xb9, 0xd8, 0xbb, 0x64, 0x0b, 0xbe, 0x11, 0xba, 0xf8, 0x0c, 0x2f, 0x74, 0xb0, 0x27, 0x8c, 0x07,
|
||||
0x11, 0x63, 0x1d, 0xee, 0xcf, 0xc3, 0x10, 0x9f, 0xc2, 0xd7, 0x09, 0xfc, 0x20, 0x34, 0x69, 0x9f,
|
||||
0xd8, 0x15, 0x33, 0xf1, 0x1a, 0xfc, 0x24, 0x94, 0x76, 0xaf, 0x7f, 0xef, 0xe0, 0x25, 0xac, 0x9f,
|
||||
0x35, 0xeb, 0xbf, 0xce, 0xe8, 0xeb, 0xd8, 0x41, 0x34, 0x8d, 0xa5, 0xe9, 0x7c, 0xd3, 0x6a, 0x5b,
|
||||
0x9e, 0xec, 0xc6, 0xee, 0x80, 0xb7, 0x34, 0x79, 0x8a, 0x25, 0x7a, 0xbc, 0xa8, 0x8c, 0xab, 0x67,
|
||||
0xc3, 0x93, 0xde, 0xee, 0x2a, 0xb3, 0x75, 0x59, 0x65, 0x1e, 0x8b, 0x37, 0xdb, 0x97, 0x8d, 0x9f,
|
||||
0x73, 0x23, 0xf2, 0x30, 0x89, 0x93, 0xe6, 0xe1, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9e, 0x0a,
|
||||
0x51, 0x7f, 0x3e, 0x05, 0x00, 0x00,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ func request_RepositoryService_List_0(ctx context.Context, marshaler runtime.Mar
|
|||
}
|
||||
|
||||
func request_RepositoryService_Create_0(ctx context.Context, marshaler runtime.Marshaler, client RepositoryServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||
var protoReq v1alpha1.Respository
|
||||
var protoReq v1alpha1.Repository
|
||||
var metadata runtime.ServerMetadata
|
||||
|
||||
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import "k8s.io/api/core/v1/generated.proto";
|
|||
import "github.com/argoproj/argo-cd/pkg/apis/application/v1alpha1/generated.proto";
|
||||
|
||||
|
||||
// RepoQuery is a query for respository resources
|
||||
// RepoQuery is a query for Repository resources
|
||||
message RepoQuery {
|
||||
string repo = 1;
|
||||
}
|
||||
|
|
@ -21,19 +21,19 @@ message RepoResponse {}
|
|||
|
||||
message RepoUpdateRequest {
|
||||
string url = 1;
|
||||
github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository repo = 2;
|
||||
github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository repo = 2;
|
||||
}
|
||||
|
||||
// RepositoryService
|
||||
service RepositoryService {
|
||||
|
||||
// List returns list of repos
|
||||
rpc List(RepoQuery) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.RespositoryList) {
|
||||
rpc List(RepoQuery) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.RepositoryList) {
|
||||
option (google.api.http).get = "/api/v1/repositories";
|
||||
}
|
||||
|
||||
// Create creates a repo
|
||||
rpc Create(github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository) {
|
||||
rpc Create(github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository) {
|
||||
option (google.api.http) = {
|
||||
post: "/api/v1/repositories"
|
||||
body: "*"
|
||||
|
|
@ -41,16 +41,16 @@ service RepositoryService {
|
|||
}
|
||||
|
||||
// Get returns a repo by name
|
||||
rpc Get(RepoQuery) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository) {
|
||||
rpc Get(RepoQuery) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository) {
|
||||
option (google.api.http).get = "/api/v1/repositories/{repo}";
|
||||
}
|
||||
|
||||
// Update updates a repo
|
||||
rpc Update(github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository) {
|
||||
rpc Update(github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository) {
|
||||
}
|
||||
|
||||
// Update updates a repo (special handler intended to be used only by the gRPC gateway)
|
||||
rpc UpdateREST(RepoUpdateRequest) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Respository) {
|
||||
rpc UpdateREST(RepoUpdateRequest) returns (github.com.argoproj.argo_cd.pkg.apis.application.v1alpha1.Repository) {
|
||||
option (google.api.http) = {
|
||||
put: "/api/v1/repositories/{url}"
|
||||
body: "repo"
|
||||
|
|
|
|||
|
|
@ -106,8 +106,8 @@ func (a *ArgoCDServer) Run() {
|
|||
|
||||
// Start the muxed listeners for our servers
|
||||
log.Infof("argocd %s serving on port %d", argocd.GetVersion(), port)
|
||||
go grpcS.Serve(grpcL)
|
||||
go httpS.Serve(httpL)
|
||||
go func() { _ = grpcS.Serve(grpcL) }()
|
||||
go func() { _ = httpS.Serve(httpL) }()
|
||||
err = m.Serve()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue