Change location of gorealis to point to auora-scheduler repository.

This commit is contained in:
Renan DelValle 2020-02-19 12:07:15 -08:00
parent d3295a8729
commit debe608b8a
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9
15 changed files with 18 additions and 18 deletions

View file

@ -1,12 +1,12 @@
# Australis
A light-weight client for [Apache Aurora](https://aurora.apache.org/) built using [gorealis](https://github.com/paypal/gorealis).
A light-weight client for [Aurora Scheduler](https://aurora-scheduler.github.io/) built using [gorealis](https://github.com/aurora-scheduler/gorealis).
## Usage
See the [documentation](docs/australis.md) for more information.
## Status
Australis is a work in progress and does not support all the features of Apache Aurora.
Australis is a work in progress and does not support all the features of Aurora Scheduler.
### Build locally
This project uses go mods. To build locally run:
@ -14,4 +14,4 @@ This project uses go mods. To build locally run:
`$ go build -o australis main.go`
### Building debian package
From the inside of the deb-packaging folder, run [build_deb.sh](deb-packaging/build_deb.sh)
From the inside of the deb-packaging folder, run [build_deb.sh](deb-packaging/build_deb.sh)

View file

@ -20,7 +20,7 @@ import (
yaml "gopkg.in/yaml.v2"
realis "github.com/paypal/gorealis/v2"
realis "github.com/aurora-scheduler/gorealis/v2"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)

View file

@ -17,8 +17,8 @@ package cmd
import (
"fmt"
realis "github.com/paypal/gorealis/v2"
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
realis "github.com/aurora-scheduler/gorealis/v2"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)

View file

@ -15,7 +15,7 @@
package cmd
import (
realis "github.com/paypal/gorealis/v2"
realis "github.com/aurora-scheduler/gorealis/v2"
"github.com/spf13/cobra"
)

View file

@ -18,7 +18,7 @@ import (
"strings"
"time"
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
)

View file

@ -15,7 +15,7 @@
package cmd
import (
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
)

View file

@ -15,7 +15,7 @@
package cmd
import (
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
)

View file

@ -15,7 +15,7 @@
package cmd
import (
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
)

View file

@ -17,7 +17,7 @@ package cmd
import (
"fmt"
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
)

View file

@ -20,7 +20,7 @@ import (
"github.com/spf13/viper"
realis "github.com/paypal/gorealis/v2"
realis "github.com/aurora-scheduler/gorealis/v2"
"github.com/spf13/cobra"
"github.com/sirupsen/logrus"

View file

@ -21,7 +21,7 @@ import (
"os"
"time"
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
)

View file

@ -17,7 +17,7 @@ package cmd
import (
"time"
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/spf13/cobra"
)

View file

@ -20,7 +20,7 @@ import (
"fmt"
"time"
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
"github.com/aurora-scheduler/gorealis/v2/gen-go/apache/aurora"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)

2
debian/control vendored
View file

@ -3,7 +3,7 @@ Priority: optional
Maintainer: Renan DelValle <renanidelvalle@gmail.com>
Section: utils
Standards-Version: 4.2.1.3
Homepage: https://github.com/rdelval/australis
Homepage: https://github.com/aurora-scheduler/australis
Package: australis
Architecture: any

View file

@ -15,7 +15,7 @@
package main
import (
"github.com/rdelval/australis/cmd"
"github.com/aurora-scheduler/australis/cmd"
)
func main() {