Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unsupportedOp (0.11 sec)

  1. pilot/pkg/config/kube/crdclient/client.go

    		if err != nil {
    			return nil, err
    		}
    		return json.Marshal(ops)
    	case types.MergePatchType:
    		return jsonmerge.CreateMergePatch(oldJSON, newJSON)
    	default:
    		return nil, fmt.Errorf("unsupported patch type: %v. must be one of JSONPatchType or MergePatchType", patchType)
    	}
    }
    
    func (cl *Client) addCRD(name string) {
    	cl.logger.Debugf("adding CRD %q", name)
    	s, f := cl.schemasByCRDName[name]
    	if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    				Format: &core.SubstitutionFormatString_JsonFormat{
    					JsonFormat: jsonLogStruct,
    				},
    				JsonFormatOptions: &core.JsonFormatOptions{SortProperties: false},
    			},
    		}
    	default:
    		log.Warnf("unsupported access log format %v", mesh.AccessLogEncoding)
    	}
    
    	if len(formatters) > 0 {
    		fl.GetLogFormat().Formatters = formatters
    	}
    	al := &accesslog.AccessLog{
    		Name:       wellknown.FileAccessLog,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top