Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FeedConfig ¶
type FeedConfig struct { // K8sapi configures the k8s api feed K8sapi K8sAPIConfig }
FeedConfig specifies the feed config
type K8sAPIConfig ¶
type K8sAPIConfig struct { // Enabled indicates if the k8s api feed is used // default: false Enabled bool `json:"enabled"` // URI is where the api server is reacheble. Format: 'host:port', optional with 'http://' or 'https://' // default: http://127.0.0.1:10550 URI string `json:"URI"` // InsecureTLS indicates if there is any TLS certificate used that is self signed (optional) // default: true InsecureTLS bool `json:"insecureTLS"` // Token is the token to communicate with the API server (optional) // default: "" Token string `json:"token"` }
K8sAPIConfig specifies the k8s api feed configuration
Click to show internal directories.
Click to hide internal directories.