forked from nginx/kubernetes-ingress
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,108 changed files
with
472,274 additions
and
563,081 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
package nginx | ||
|
||
import "k8s.io/kubernetes/pkg/api" | ||
import "k8s.io/kubernetes/pkg/apis/extensions" | ||
import ( | ||
api_v1 "k8s.io/client-go/pkg/api/v1" | ||
extensions "k8s.io/client-go/pkg/apis/extensions/v1beta1" | ||
) | ||
|
||
// IngressEx holds an Ingress along with Secrets and Endpoints of the services | ||
// that are referenced in this Ingress | ||
type IngressEx struct { | ||
Ingress *extensions.Ingress | ||
Secrets map[string]*api.Secret | ||
Secrets map[string]*api_v1.Secret | ||
Endpoints map[string][]string | ||
} |
Oops, something went wrong.