Skip to content

Commit 6c6d346

Browse files
Wei WengWei Weng
authored andcommitted
remove more v1alpha1 references
Signed-off-by: Wei Weng <Wei.Weng@microsoft.com>
1 parent 5e84d98 commit 6c6d346

File tree

19 files changed

+1
-52
lines changed

19 files changed

+1
-52
lines changed

.github/copilot-instructions.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ The main idea is that we are creating a multi-cluster application management sol
4949
- `test/apis` - The tests for the CRDs.
5050
- `test/upgrade` - The tests for the upgrade tests to test compatibility between versions.
5151
- `test/e2e` - The end to end tests for the member and hub agent.
52-
- `test/integration` - The integration tests for the v1alpha1 member and hub agent.
5352
- `test/scheduler` - The integration tests for the scheduler.
5453
- `test/utils` - folder contains the utils code which is used to provide common functions for tests
5554
- The `tools/` folder contains client-side tools for helping manage the fleet.

CLAUDE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ All controllers follow standard Kubernetes controller patterns:
209209
- Custom properties supported for scheduling decisions
210210

211211
### Multi-API Version Support
212-
- v1alpha1 APIs maintained for backward compatibility
213212
- v1beta1 APIs are current stable version
214213
- Feature flags control API version enablement
215214

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ MEMBER_CLUSTER_COUNT ?= 3
4646
ROOT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
4747
TOOLS_DIR := hack/tools
4848
TOOLS_BIN_DIR := $(abspath $(TOOLS_DIR)/bin)
49-
CLUSTER_CONFIG := $(abspath test/e2e/v1alpha1/kind-config.yaml)
5049

5150
# Binaries
5251
# Note: Need to use abspath so we can invoke these from subdirectories

charts/hub-agent/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ _See [helm install](https://helm.sh/docs/helm/helm_install/) for command documen
3232
| `affinity` | Node affinity for hub-agent pods | `{}` |
3333
| `tolerations` | Tolerations for hub-agent pods | `[]` |
3434
| `logVerbosity` | Log level (klog V logs) | `5` |
35-
| `enableV1Alpha1APIs` | Watch for v1alpha1 APIs | `false` |
3635
| `enableV1Beta1APIs` | Watch for v1beta1 APIs | `true` |
3736
| `hubAPIQPS` | QPS for fleet-apiserver (not including events/node heartbeat) | `250` |
3837
| `hubAPIBurst` | Burst for fleet-apiserver (not including events/node heartbeat) | `1000` |

charts/hub-agent/crdbases/multicluster.x-k8s.io_works.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
{{ $files := .Files }}
2-
{{ if .Values.enableV1Alpha1APIs }}
3-
{{ $files.Get "crdbases/multicluster.x-k8s.io_works.yaml" }}
4-
{{ end }}
5-
---
62
{{ if .Values.enableV1Beta1APIs }}
73
{{ $files.Get "crdbases/placement.kubernetes-fleet.io_works.yaml" }}
84
{{ end }}

charts/hub-agent/templates/deployment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
- --webhook-client-connection-type={{.Values.webhookClientConnectionType}}
2929
- --v={{ .Values.logVerbosity }}
3030
- -add_dir_header
31-
- --enable-v1alpha1-apis={{ .Values.enableV1Alpha1APIs }}
3231
- --enable-v1beta1-apis={{ .Values.enableV1Beta1APIs }}
3332
- --enable-cluster-inventory-apis={{ .Values.enableClusterInventoryAPI }}
3433
- --enable-staged-update-run-apis={{ .Values.enableStagedUpdateRunAPIs }}

charts/hub-agent/values.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ tolerations: []
3636

3737
affinity: {}
3838

39-
enableV1Alpha1APIs: false
4039
enableV1Beta1APIs: true
4140
enableClusterInventoryAPI: true
4241
enableStagedUpdateRunAPIs: true

charts/member-agent/crdbases/multicluster.x-k8s.io_appliedworks.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

charts/member-agent/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ azure:
5959
tlsClientInsecure: true #TODO should be false in the production
6060
useCAAuth: false
6161

62-
enableV1Alpha1APIs: true
63-
enableV1Beta1APIs: false
62+
enableV1Beta1APIs: true
6463

6564
enablePprof: true
6665
pprofPort: 6065

0 commit comments

Comments
 (0)