Skip to content

setCephSettings

Set the Ceph settings for an OpenStack Availability Zone Supported in v9.5+ Set the Ceph storage settings for an OpenStack Availability Zone. Accepts multiple settings.

Arguments

Argument Type Description
input (required) SetCephSettingsInput! Input for V1SetCephSettings.

Returns

SetCephSettingsReply!

Sample

mutation SetCephSettings($input: SetCephSettingsInput!) {
  setCephSettings(input: $input)
}
{
  "input": {
    "cephSettings": {
      "data": [
        {
          "monHosts": [
            {
              "ip": "example-string",
              "port": 0
            }
          ],
          "openstackAvailabilityZoneId": "example-string",
          "volumePoolName": "example-string",
          "volumeTypeId": "example-string"
        }
      ]
    },
    "openstackAvailabilityZoneId": "example-string"
  }
}
{
  "data": {
    "setCephSettings": {
      "data": [
        {
          "fsid": "example-string",
          "id": "example-string",
          "keyring": "example-string",
          "openstackAvailabilityZoneId": "example-string",
          "volumePoolName": "example-string",
          "volumeTypeId": "example-string"
        }
      ]
    }
  }
}