summaryrefslogtreecommitdiff
path: root/vendor/github.com/openshift/api/config/v1/types_proxy.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-05-23 06:48:18 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-05-23 06:48:57 -0400
commit935a716418a5b7e7b33ac0c53048d57e28b910af (patch)
tree6b8dafc6b243e96555d1dcff53ca223842eb6e30 /vendor/github.com/openshift/api/config/v1/types_proxy.go
parente323d3e92d618f76efe63a29ae53150c943e1fbe (diff)
downloadpodman-935a716418a5b7e7b33ac0c53048d57e28b910af.tar.gz
podman-935a716418a5b7e7b33ac0c53048d57e28b910af.tar.bz2
podman-935a716418a5b7e7b33ac0c53048d57e28b910af.zip
Vendor in latest containers/buildah
This will take a significant size away from the podman-remote executables. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'vendor/github.com/openshift/api/config/v1/types_proxy.go')
-rw-r--r--vendor/github.com/openshift/api/config/v1/types_proxy.go90
1 files changed, 0 insertions, 90 deletions
diff --git a/vendor/github.com/openshift/api/config/v1/types_proxy.go b/vendor/github.com/openshift/api/config/v1/types_proxy.go
deleted file mode 100644
index 93f4c487e..000000000
--- a/vendor/github.com/openshift/api/config/v1/types_proxy.go
+++ /dev/null
@@ -1,90 +0,0 @@
-package v1
-
-import (
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
-)
-
-// +genclient
-// +genclient:nonNamespaced
-// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
-
-// Proxy holds cluster-wide information on how to configure default proxies for the cluster. The canonical name is `cluster`
-type Proxy struct {
- metav1.TypeMeta `json:",inline"`
- metav1.ObjectMeta `json:"metadata,omitempty"`
-
- // Spec holds user-settable values for the proxy configuration
- // +kubebuilder:validation:Required
- // +required
- Spec ProxySpec `json:"spec"`
- // status holds observed values from the cluster. They may not be overridden.
- // +optional
- Status ProxyStatus `json:"status"`
-}
-
-// ProxySpec contains cluster proxy creation configuration.
-type ProxySpec struct {
- // httpProxy is the URL of the proxy for HTTP requests. Empty means unset and will not result in an env var.
- // +optional
- HTTPProxy string `json:"httpProxy,omitempty"`
-
- // httpsProxy is the URL of the proxy for HTTPS requests. Empty means unset and will not result in an env var.
- // +optional
- HTTPSProxy string `json:"httpsProxy,omitempty"`
-
- // noProxy is a comma-separated list of hostnames and/or CIDRs for which the proxy should not be used.
- // Empty means unset and will not result in an env var.
- // +optional
- NoProxy string `json:"noProxy,omitempty"`
-
- // readinessEndpoints is a list of endpoints used to verify readiness of the proxy.
- // +optional
- ReadinessEndpoints []string `json:"readinessEndpoints,omitempty"`
-
- // trustedCA is a reference to a ConfigMap containing a CA certificate bundle used
- // for client egress HTTPS connections. The certificate bundle must be from the CA
- // that signed the proxy's certificate and be signed for everything. The trustedCA
- // field should only be consumed by a proxy validator. The validator is responsible
- // for reading the certificate bundle from required key "ca-bundle.crt" and copying
- // it to a ConfigMap named "trusted-ca-bundle" in the "openshift-config-managed"
- // namespace. The namespace for the ConfigMap referenced by trustedCA is
- // "openshift-config". Here is an example ConfigMap (in yaml):
- //
- // apiVersion: v1
- // kind: ConfigMap
- // metadata:
- // name: user-ca-bundle
- // namespace: openshift-config
- // data:
- // ca-bundle.crt: |
- // -----BEGIN CERTIFICATE-----
- // Custom CA certificate bundle.
- // -----END CERTIFICATE-----
- //
- // +optional
- TrustedCA ConfigMapNameReference `json:"trustedCA,omitempty"`
-}
-
-// ProxyStatus shows current known state of the cluster proxy.
-type ProxyStatus struct {
- // httpProxy is the URL of the proxy for HTTP requests.
- // +optional
- HTTPProxy string `json:"httpProxy,omitempty"`
-
- // httpsProxy is the URL of the proxy for HTTPS requests.
- // +optional
- HTTPSProxy string `json:"httpsProxy,omitempty"`
-
- // noProxy is a comma-separated list of hostnames and/or CIDRs for which the proxy should not be used.
- // +optional
- NoProxy string `json:"noProxy,omitempty"`
-}
-
-// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
-
-type ProxyList struct {
- metav1.TypeMeta `json:",inline"`
- metav1.ListMeta `json:"metadata"`
-
- Items []Proxy `json:"items"`
-}