Skip to content

Commit

Permalink
feat: upgrade vela-core to v1.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaowu.zhu authored and muma378 committed Nov 27, 2023
1 parent b71d68e commit 6e612aa
Show file tree
Hide file tree
Showing 103 changed files with 1,177 additions and 6,818 deletions.
4 changes: 2 additions & 2 deletions charts/vela-core/config
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export USE_OPENSOURCE_CHART=false

# must
export REPO_URL=https://charts.kubevela.net/core
export REPO_URL=https://kubevela.github.io/charts
export REPO_NAME=kubevela
export CHART_NAME=vela-core
export VERSION=1.7.7
export VERSION=1.9.7

# pr, issue, none
export UPGRADE_METHOD=pr
Expand Down
100 changes: 81 additions & 19 deletions charts/vela-core/parent/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
"vela-core": {
"type": "object",
"properties": {
"OAMSpecVer": {
"type": "string"
},
"admissionWebhooks": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -117,19 +114,19 @@
"definitionRevisionLimit": {
"type": "integer"
},
"dependCheckWait": {
"type": "string"
},
"disableCaps": {
"type": "string"
},
"featureGates": {
"type": "object",
"properties": {
"applyOnce": {
"type": "boolean"
},
"enableLegacyComponentRevision": {
"disableBootstrapClusterInfo": {
"type": "boolean"
},
"disableWebhookAutoSchedule": {
"type": "boolean"
},
"disableWorkflowContextConfigMapCache": {
"type": "boolean"
},
"gzipApplicationRevision": {
Expand All @@ -138,12 +135,21 @@
"gzipResourceTracker": {
"type": "boolean"
},
"informerCacheFilterUnnecessaryFields": {
"type": "boolean"
},
"multiStageComponentApply": {
"type": "boolean"
},
"preDispatchDryRun": {
"type": "boolean"
},
"sharedDefinitionStorageForApplicationRevision": {
"type": "boolean"
},
"validateComponentWhenSharding": {
"type": "boolean"
},
"zstdApplicationRevision": {
"type": "boolean"
},
Expand Down Expand Up @@ -211,6 +217,26 @@
}
}
},
"livenessProbe": {
"type": "object",
"properties": {
"failureThreshold": {
"type": "integer"
},
"initialDelaySeconds": {
"type": "integer"
},
"periodSeconds": {
"type": "integer"
},
"successThreshold": {
"type": "integer"
},
"timeoutSeconds": {
"type": "integer"
}
}
},
"logDebug": {
"type": "boolean"
},
Expand All @@ -226,6 +252,9 @@
"clusterGateway": {
"type": "object",
"properties": {
"direct": {
"type": "boolean"
},
"image": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -262,6 +291,17 @@
"type": "string"
}
}
},
"requests": {
"type": "object",
"properties": {
"cpu": {
"type": "string"
},
"memory": {
"type": "string"
}
}
}
}
},
Expand Down Expand Up @@ -311,9 +351,6 @@
"cachedGvks": {
"type": "string"
},
"controllerReconcileLoopReduction": {
"type": "boolean"
},
"disableApplicationRevision": {
"type": "boolean"
},
Expand All @@ -323,9 +360,6 @@
"disableResourceApplyDoubleCheck": {
"type": "boolean"
},
"disableWorkflowRecorder": {
"type": "boolean"
},
"enableInMemoryWorkflowContext": {
"type": "boolean"
},
Expand All @@ -334,9 +368,6 @@
},
"markWithProb": {
"type": "number"
},
"resourceTrackerListOp": {
"type": "boolean"
}
}
},
Expand All @@ -351,6 +382,26 @@
}
}
},
"readinessProbe": {
"type": "object",
"properties": {
"failureThreshold": {
"type": "integer"
},
"initialDelaySeconds": {
"type": "integer"
},
"periodSeconds": {
"type": "integer"
},
"successThreshold": {
"type": "integer"
},
"timeoutSeconds": {
"type": "integer"
}
}
},
"replicaCount": {
"type": "integer"
},
Expand Down Expand Up @@ -398,6 +449,17 @@
}
}
},
"sharding": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"schedulableShards": {
"type": "string"
}
}
},
"systemDefinitionNamespace": {
"type": "null"
},
Expand Down
8 changes: 4 additions & 4 deletions charts/vela-core/vela-core/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apiVersion: v2
appVersion: 1.7.7
appVersion: 1.9.7
description: A Helm chart for KubeVela core
home: https://kubevela.io
icon: https://kubevela.io/img/logo.svg
name: vela-core
type: application
version: 1.7.7
version: 1.9.7
dependencies:
- name: vela-core
version: "1.7.7"
repository: "https://charts.kubevela.net/core"
version: "1.9.7"
repository: "https://kubevela.github.io/charts"
keywords:
- oam
Loading

0 comments on commit 6e612aa

Please sign in to comment.