Skip to content

Commit

Permalink
Merge pull request #129 from rancher/release-v0.2.0
Browse files Browse the repository at this point in the history
Update CI for 0.2.0 release
  • Loading branch information
dbason authored Oct 9, 2021
2 parents 2ae649e + 64ead27 commit 6e6021f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 5 additions & 1 deletion deploy/manifests/20_cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ metadata:
name: opni-cluster
namespace: opni-cluster
spec:
version: v0.2.0-rc1
version: v0.2.0
deployLogCollector: true
services:
gpuController:
Expand All @@ -35,6 +35,10 @@ spec:
metrics:
enabled: false # metrics anomaly detection is currently experimental
prometheusEndpoint: http://prometheus-url # metrics anomaly detection requires a prometheus url to connect to.
insights:
enabled: false
ui:
enabled: false
elastic:
version: 1.13.2
s3:
Expand Down
8 changes: 7 additions & 1 deletion test/e2e/cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ var _ = Describe("OpniCluster E2E Test", Label("e2e"), func() {
Namespace: clusterCrNamespace,
},
Spec: v1beta1.OpniClusterSpec{
Version: "v0.2.0-rc1",
Version: "v0.2.0",
DeployLogCollector: pointer.BoolPtr(true),
Services: v1beta1.ServicesSpec{
GPUController: v1beta1.GPUControllerServiceSpec{
Expand All @@ -129,6 +129,12 @@ var _ = Describe("OpniCluster E2E Test", Label("e2e"), func() {
},
},
},
Insights: v1beta1.InsightsServiceSpec{
Enabled: pointer.BoolPtr(false),
},
UI: v1beta1.UIServiceSpec{
Enabled: pointer.BoolPtr(false),
},
},
Elastic: v1beta1.ElasticSpec{
Version: "1.13.2",
Expand Down

0 comments on commit 6e6021f

Please sign in to comment.