Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrAirbyteDir is returned anytime an there is an issue in accessing the paths.Airbyte directory. ErrAirbyteDir = &Error{ msg: "airbyte directory is inaccessible", help: `The ~/.airbyte directory is inaccessible. You may need to remove this directory before trying your command again.`, } // ErrClusterNotFound is returned in the event that no cluster was located. ErrClusterNotFound = &Error{ msg: "no existing cluster found", help: `No cluster was found. If this is unexpected, you may need to run the "local install" command again.`, } // ErrDocker is returned anytime an error occurs when attempting to communicate with docker. ErrDocker = &Error{ msg: "error communicating with docker", help: `An error occurred while communicating with the Docker daemon. Ensure that Docker is running and is accessible. You may need to upgrade to a newer version of Docker. For additional help please visit https://docs.docker.com/get-docker/`, } // ErrHelmStuck is returned if when running a helm install or upgrade command, a previous install or upgrade // attempt is already in progress which this tool cannot work around. ErrHelmStuck = &Error{ msg: "another helm operation (install/upgrade/rollback) is in progress", help: `An error occurred while attempting to run a helm install or upgrade. If this error persists, you may need to run the "abctl local uninstall" command before attempting to run the "abctl local install" command again. Your data will persist between the uninstall and install commands. `, } // ErrKubernetes is returned anytime an error occurs when attempting to communicate with the kubernetes cluster. ErrKubernetes = &Error{ msg: "error communicating with kubernetes", help: `An error occurred while communicating with the Kubernetes cluster. If this error persists, you may need to run the "abctl local uninstall" command before attempting to run the "abctl local install" command again. Your data will persist between the uninstall and install commands.`, } // ErrIngress is returned in the event that ingress configuration failed. ErrIngress = &Error{ msg: "error configuring ingress", help: `An error occurred while configuring ingress. This could be in indication that the ingress port is already in use by a different application. The ingress port can be changed by passing the flag --port.`, } // ErrPort is returned in the event that the requested port is unavailable. ErrPort = &Error{ msg: "error verifying port availability", help: `An error occurred while verifying if the request port is available. This could be in indication that the ingress port is already in use by a different application. The ingress port can be changed by passing the flag --port.`, } ErrIpAddressForHostFlag = &Error{ msg: "invalid host - can't use an IP address", help: `Looks like you provided an IP address to the --host flag. This won't work, because Kubernetes ingress rules require a lowercase domain name. By default, abctl will allow access from any hostname or IP, so you might not need the --host flag.`, } ErrInvalidHostFlag = &Error{ msg: "invalid host", help: `The --host flag expects a lowercase domain name, e.g. "example.com". IP addresses won't work. Ports won't work (e.g. example:8000). URLs won't work (e.g. http://example.com). By default, abctl will allow access from any hostname or IP, so you might not need the --host flag.`, } ErrBootloaderFailed = &Error{ msg: "bootloader failed", help: "The bootloader failed to its initialization checks or migrations. Try running again with --verbose to see the full bootloader logs.", } )
Functions ¶
This section is empty.
Types ¶
type Config ¶ added in v0.30.2
type Config struct {
AirbyteAPIHost string // From AIRBYTE_API_HOST env var
AirbyteURL string // From AIRBYTE_URL env var
AirbyteAuthURL string // From AB_AIRBYTE_AUTH_IDENTITY_PROVIDER_OIDC_ENDPOINTS_AUTHORIZATION_SERVER_ENDPOINT env var
}
Config holds configuration extracted from Airbyte installations. May be moved to a more specific package as the architecture evolves.
Click to show internal directories.
Click to hide internal directories.