OrderService Custom Resource manifest

The following .yaml file is a schema with all the parameters and default values supported by OrderService CR:
apiVersion: apps.oms.ibm.com/v1beta1
kind: OrderService
metadata:
  name: ""
spec:
  license:
    accept: false
  upgradeStrategy: ""
  secret: ""
  replicaCount: 1
  # profile: balanced
  # orderServiceVersion: ""
  # podLabels: {}
  # podAnnotations: {}
​
  image:
    tag: ""
    repository: ""
    # pullPolicy: IfNotPresent
    # imageName: orderservice
    # imagePullSecrets:
    # - name: ""
​
  networking:
    ingress:
      host: ""
      # annotations: {}
      # labels: {}
      # ssl:
        # enabled: false
        # identitySecretName: ""
​
  networkPolicy:
    <kubernetes-network-policy-spec>

  # Note: The following way of configuring security parameter is deprecated.
  # security:
  # trust:
  #    # storeLocation: ""
  #    # trustedCertDir: ""
  #    storeType: PKCS12
  #    trustJavaCACerts: true

  #  The new way to set the truststore is by using ssl as shown in the following snippet.
  security:
    ssl:
      trust:
        # storeLocation: ""
        # trustedCertDir: ""
        storeType: PKCS12
        trustJavaCACerts: true

  # serverProfiles:
  # - name: ""
    # resources:
      # limits:
        # cpu: 
        # memory: 
      # requests:
        # cpu: 
        # memory: 
​
  configuration:
    jwt_algorithm: ""
    jwt_audience: ""
    jwt_ignore_expiration: 
    jwt_issuer: ""
    # additionalConfig: {}
​
  cassandra:
    keyspace: ""
    # contactPoints: ""
    # createDevInstance:
      # profile: balanced
      # storage:
        # name: ""
        # accessMode: ""
        # capacity: 
        # storageClassName: ""
​
  elasticsearch:
    # contactPoints: ""
    # createDevInstance:
      # profile: balanced
      # storage:
        # name: ""
        # accessMode: ""
        # capacity: 
        # storageClassName: ""
​
  # additionalMounts:
    # configMaps:
    # - name: ""
      # mountPath: ""
      # subPath: ""
      # subPathExpr: ""
      # readOnly: false
      # mountPropagation: ""
      # matchLabels: {}
    # secrets:
    # - name: ""
      # mountPath: ""
      # subPath: ""
      # subPathExpr: ""
      # readOnly: false
      # mountPropagation: ""
      # matchLabels: {}
    # storages:
    # - name: ""
      # mountPath: ""
      # storageClassName: ""
      # accessMode: ""
      # capacity: 
      # matchLabels: {}
Note: The commented parameters are optional for creating OrderService.

For more information about OMServer CR configured with sample values, see OrderService Custom Resource sample manifest.