Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for unstructured (0.39 sec)

  1. pkg/test/framework/resource/settings.go

    }
    
    func (s *ImageSettings) PullSecretName() (string, error) {
    	if s.PullSecret == "" {
    		return "", nil
    	}
    	data, err := os.ReadFile(s.PullSecret)
    	if err != nil {
    		return "", err
    	}
    	secret := unstructured.Unstructured{Object: map[string]any{}}
    	if err := yaml.Unmarshal(data, secret.Object); err != nil {
    		return "", err
    	}
    	return secret.GetName(), nil
    }
    
    func (s *ImageSettings) PullSecretNameOrFail(t test.Failer) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    		return "", fmt.Errorf("could not retrieve global.multiCluster.clusterName from injection config")
    	}
    	return vs, nil
    }
    
    // Because we are placing into an Unstructured, place as a map instead
    // of structured Istio types.  (The go-client can handle the structured data, but the
    // fake go-client used for mocking cannot.)
    func unstructureIstioType(spec any) (map[string]any, error) {
    	b, err := yaml.Marshal(spec)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    		g.Expect(c).Should(HavePathValueEqual(PathValue{"resources.requests.memory", "888Mi"}))
    
    		dobj = mustGetDeployment(g, objs, "ilb-gateway")
    		d = dobj.Unstructured()
    		c = dobj.Container("istio-proxy")
    		s := mustGetService(g, objs, "ilb-gateway").Unstructured()
    		g.Expect(d).Should(HavePathValueContain(PathValue{"metadata.labels", toMap("app:istio-ingressgateway,istio:ingressgateway,release: istio")}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	// For unstructured lists with a target group/version, preserve the group/version in the instantiated list items
    	if unstructuredList, isUnstructured := listObj.(*unstructured.UnstructuredList); isUnstructured {
    		if apiVersion := unstructuredList.GetAPIVersion(); len(apiVersion) > 0 {
    			return func() runtime.Object {
    				return &unstructured.Unstructured{Object: map[string]interface{}{"apiVersion": apiVersion}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	data := map[string]any{}
    	err := yaml.Unmarshal([]byte(yml), &data)
    	if err != nil {
    		return err
    	}
    	us := unstructured.Unstructured{Object: data}
    	// set managed-by label
    	clabel := strings.ReplaceAll(controller, "/", "-")
    	err = unstructured.SetNestedField(us.Object, clabel, "metadata", "labels", constants.ManagedGatewayLabel)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeresolver_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package unstructured
    
    import (
    	"reflect"
    	"testing"
    
    	"github.com/google/cel-go/cel"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/cel/mutation"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    	configMapParams := &corev1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "foo",
    		},
    		Data: map[string]string{
    			"fakeString": "fake",
    		},
    	}
    	crdParams := &unstructured.Unstructured{
    		Object: map[string]interface{}{
    			"spec": map[string]interface{}{
    				"testSize": 10,
    			},
    		},
    	}
    	podObject := corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "foo",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  8. pkg/kube/client.go

    	obj := &unstructured.Unstructured{}
    	_, gvk, err := decUnstructured.Decode([]byte(cfg), nil, obj)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	mapping, err := c.mapper.RESTMapping(gvk.GroupKind(), gvk.Version)
    	if err != nil {
    		return nil, nil, fmt.Errorf("mapping: %v", err)
    	}
    
    	var dr dynamic.ResourceInterface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	force := false
    	if p.options.Force != nil {
    		force = *p.options.Force
    	}
    	if p.fieldManager == nil {
    		panic("FieldManager must be installed to run apply")
    	}
    
    	patchObj := &unstructured.Unstructured{Object: map[string]interface{}{}}
    	if err := yaml.Unmarshal(p.patch, &patchObj.Object); err != nil {
    		return nil, errors.NewBadRequest(fmt.Sprintf("error decoding YAML: %v", err))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1/types.go

    	// The type of Patch. Currently we only allow "JSONPatch".
    	// +optional
    	PatchType *PatchType `json:"patchType,omitempty" protobuf:"bytes,5,opt,name=patchType"`
    
    	// AuditAnnotations is an unstructured key value map set by remote admission controller (e.g. error=image-blacklisted).
    	// MutatingAdmissionWebhook and ValidatingAdmissionWebhook admission controller will prefix the keys with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top