Jian Qiu
96c16282ef
fix: classic nic dhcp default gateway revisit ( #25669 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-10 21:05:56 +08:00
Jian Qiu
7367e88e4f
fix: keystone-role-assignments-list-scope ( #25659 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-10 17:24:56 +08:00
Jian Qiu
ee62a122e6
fix(cloudid): omit clouduser secret from list and get responses ( #25660 )
...
Return console login details from the login-info action; skip secret in resource JSON and logs.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-10 17:24:31 +08:00
Jian Qiu
ae7413859f
fix: keystone idp join project roles check ( #25656 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-10 17:06:17 +08:00
Jian Qiu
61b354e281
fix(identity): validate rolepolicy create and bind-role requests ( #25644 )
...
Require role_id and reuse the role add-policy checks when creating a binding.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-10 13:09:53 +08:00
屈轩
358a00bd25
fix(region): convert kvm prefer storage ( #25641 )
2026-09-10 12:22:02 +08:00
Jian Qiu
649bb50097
fix(identity): check assume login with system scope and target roles ( #25638 )
...
Keep the caller session when authorizing assume and reuse join-project role checks.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-10 12:13:39 +08:00
Jian Qiu
38601e3a1e
fix(image): reject images that declare a backing file ( #25635 )
...
Treat a non-empty backing filename as unsupported on upload, convert, probe, and ceph cache.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-10 11:54:34 +08:00
Jian Qiu
0557dae5fd
fix: classic net distribute default route for default nic ( #25617 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-09 22:29:17 +08:00
Jian Qiu
658bc1d5d9
fix(guestfs): keep guest file deploy inside the mounted filesystem ( #25602 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-08 23:09:26 +08:00
Jian Qiu
f05d90067f
fix(identity): check SAML assertion issuer, audience, and optional signature ( #25599 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-08 20:03:38 +08:00
Jian Qiu
a4fdd18971
fix(cloudcommon): fall back list query scope to the resource default view ( #25590 )
...
When admin or scope query parameters do not map to a concrete view, use the resource's own scope and keep owner filters applied.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-08 14:33:43 +08:00
Jian Qiu
7b5606678a
fix(apigateway): authenticate csrf resource requests with the caller session ( #25569 )
...
Align the csrf resource handler with other API resource handlers by requiring a token and forwarding with the caller's own session.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-09-07 12:13:45 +08:00
屈轩
d55b8ed073
fix(region): vendor update ( #25573 )
2026-09-07 10:27:23 +08:00
Jian Qiu
829b92ccff
fix: module not found return 404 ( #25561 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-04 19:51:09 +08:00
Jian Qiu
7c90637a3b
fix: verify test revisit ( #25565 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-04 19:40:18 +08:00
屈轩
cb5de55b28
fix(region): esxi v2v prefer storage ( #25557 )
2026-09-04 17:33:42 +08:00
Jian Qiu
6bb46e2bb1
fix(webconsole): authenticate sftp endpoints and check session owner ( #25552 )
...
The sftp list/download/upload endpoints were not protected by
authentication, only by the UUID4 session id. Anyone who learned the
session id (it appears in URLs and logs) could list, download and
upload files of the VM over the victim's active SSH/SFTP channel.
Wrap all three endpoints with auth.Authenticate and record the owner
of each sftp session at registration, so only the user who opened the
session can use it.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-04 13:45:32 +08:00
Jian Qiu
da86349d43
fix(webconsole): validate ssh target ip against accessible resources ( #25549 )
...
The ssh console endpoint accepted a raw ip address in the URL path
and dialed it directly with user provided credentials, so any
authenticated user could use the webconsole service as an internal
SSH proxy, port scanner and credential brute-forcer.
Resolve the ip against hosts (access_ip) and servers (ip_addr)
visible to the user's session and require it to match one of them,
rejecting all other addresses.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-04 10:06:52 +08:00
Jian Qiu
081e12b683
fix(s3gateway): enforce signature freshness and single key decoding ( #25537 )
...
- Reject signed requests older or newer than 15 minutes (x-amz-date
for v4, Date for v2), so intercepted valid requests can no longer
be replayed indefinitely
- Decode the object key exactly once: r.URL.Path is already decoded
by net/http and is the form the signature covers, decoding again
let a signature for one key be replayed against another
(e.g. %252e%252e%252f resolving to ../)
- Add unit tests for both behaviors
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-04 09:19:08 +08:00
Jian Qiu
efae067b8b
fix(webconsole): fetch kubeconfig with user session for k8s shell ( #25540 )
...
The k8s shell/log endpoints fetched the target cluster kubeconfig
with the admin session, bypassing RBAC and owner scope checks, so any
authenticated user could exec into pods and read logs of any
registered cluster.
Fetch the kubeconfig with the user's own session instead, so policy
checks and owner filtering apply, and command records are attributed
to the real user.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-04 09:17:56 +08:00
Jian Qiu
b403e6636b
fix(webconsole): generate session key with crypto/rand ( #25543 )
...
The AES key encrypting all console session tokens was derived from
rand.Float32 with only about 24 bits of entropy, so it could be
recovered by brute force from a single known (session id, token)
pair and then be used to forge access tokens of arbitrary sessions.
Generate the key from 32 crypto/rand bytes instead (about 192 bits
of effective entropy). Sessions live in process memory only, so a
per-process random key is sufficient.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-04 09:17:09 +08:00
Jian Qiu
d428116a25
fix(webconsole): isolate RDP console sessions with unique ids ( #25546 )
...
RemoteRDPConsoleInfo.GetId() always returned an empty string, so all
RDP sessions were stored under the same key in the session manager:
any valid RDP access token resolved to whatever RDP session was stored
last, letting a user take over another user's console session
(host/port/username/password).
Give every RDP session a random UUID id and validate in
SSessionManager.Get that the presented access token is exactly the
one issued for the session, so sessions can not be reached by any
other token.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-04 09:16:10 +08:00
Jian Qiu
46352e0a2a
fix: convert sql.ErrNoRows to 404 not found ( #25525 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-03 23:50:06 +08:00
Jian Qiu
e9aea00e2d
fix(notify): harden verification code generation and verification ( #25526 )
...
- Generate verification codes with crypto/rand instead of the
predictable time-seeded math/rand
- Count failed verification attempts and invalidate the code after
verify_max_attempts (default 5) failures, closing the unlimited
online brute force of the 6-digit code at the login endpoint
- Delete the verification record after a successful check so codes
are single use and can not be replayed within the validity window
- Add unit tests for code generation
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-03 23:49:19 +08:00
Jian Qiu
0a94bc705d
fix(hostimage): harden nbd export against command injection ( #25529 )
...
The nbd export endpoints interpolated the request disk_id into
shell commands (sh -c with the joined qemu-nbd command line, and
ps|grep for the process check), so a crafted disk_id could execute
arbitrary commands as root on the host image service.
- Require the disk_id to be a plain UUID in both export and close
endpoints
- Run qemu-nbd with argv instead of sh -c
- Check the export process via its pid file and kill -0 instead of
shell pipelines
- Add unit tests for the validation and the process check
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-03 23:48:11 +08:00
Jian Qiu
2a2c60a114
fix(appsrv): do not honor CORS credentials for wildcard origins ( #25518 )
...
With cors_hosts unset (the default), the CORS middleware allowed all
origins and echoed the request origin together with
Access-Control-Allow-Credentials, so any website could make
authenticated cross-origin requests against the API with the user's
cookies.
Credentials are now only honored for explicitly listed origins:
with an empty or wildcard origin allowlist the middleware responds
with Access-Control-Allow-Origin: * and no credentials header.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-03 20:48:31 +08:00
Jian Qiu
a32f0591e4
fix: mask tokens and passwords in logs ( #25515 )
...
Full session tokens were written to logs in policy.go, mcclient auth,
oidc handler and the webconsole session manager; guest root passwords
were logged by the linux fsdriver and the nbdkit mount command; MCP
tool arguments and full JSON-RPC bodies (which may contain
server-reset-password passwords) were logged by the llm agent.
Truncate tokens in log messages, drop or mask password values and
log only the tool/method name for MCP calls.
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-03 19:22:51 +08:00
屈轩
a9b5f7735b
fix(region): vmware vm nic sync ( #25510 )
2026-09-03 18:27:38 +08:00
Jian Qiu
49ddce4999
fix(hostman): harden deployer command execution against shell injection ( #25500 )
...
- Quote the heredoc delimiter when writing deploy params to the
deployer guest, so deploy content, passwords and other
user-supplied values are written literally and shell expansions
($(...), backticks, $VAR) inside them are not evaluated by the
remote shell
- Escape JSON passed via --deploy-params as a single POSIX shell
word, preventing single quotes in user data from breaking out of
the argument
- Add unit tests covering injection payloads
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-03 10:55:32 +08:00
Jian Qiu
2420a0150f
fix(webconsole): harden climc shell command execution against injection ( #25503 )
...
- Run ssh via exec.Command argv instead of "bash -c" string
interpolation, so user-supplied fields can no longer escape into
local shell commands on the webconsole server
- Quote every interpolated value (env, command, args) as a POSIX
shell word, so they stay literal data on the remote shell
- Validate username charset and limit target_ip to climc pod or container
- Add unit tests covering injection payloads
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-09-03 10:51:57 +08:00
Jian Qiu
7ff34eec3e
fix: apigateway returns cors_hosts to browser ( #25495 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-09-03 00:50:44 +08:00
屈轩
4e354a2581
fix(region): optimized cachedimage list ( #25468 )
2026-09-02 11:40:24 +08:00
屈轩
f3ea8ca8f2
fix(region): support filter cloudprovider by regions ( #25463 )
2026-09-01 16:06:01 +08:00
屈轩
ec649e753c
fix(region): optimized cachedimage list ( #25453 )
2026-09-01 09:18:16 +08:00
屈轩
bbef005722
fix(region): not real delete glance cachedimage ( #25426 )
2026-08-25 14:59:07 +08:00
屈轩
635627a07a
fix(glance): avoid receive notify when glance restart ( #25412 )
2026-08-24 15:23:10 +08:00
wanyaoqi
99a68c2315
fix(host-health,region): host health detect network available add check peers and default gw ( #25386 )
2026-08-24 14:34:52 +08:00
屈轩
1ec83ab46a
fix(region): show more error info for vmware net detect ( #25403 )
2026-08-24 10:21:37 +08:00
Jian Qiu
419e7462e4
fix: storage set metadata in post_create ( #25366 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-08-19 16:27:39 +08:00
Jian Qiu
4c8dafa328
fix: deploy qga path not found error ( #25352 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-08-19 14:03:46 +08:00
屈轩
778bea45af
fix(glance): detect windows iso ( #25343 )
2026-08-14 19:00:44 +08:00
Zexi Li
dbec700111
fix(monitor): nodata 告警补充 ResIdKey 与 AlertDetails ( #25336 )
...
为 CommonAlertMetricDetails 填充资源 ID tag,并在无数据评估匹配中序列化 AlertDetails,便于下游定位资源。
2026-08-14 16:08:16 +08:00
屈轩
3b86ac3bcd
fix(glance): iso image detect ( #25332 )
2026-08-14 14:55:34 +08:00
屈轩
5dd61a722e
fix: update telegraf version ( #25325 )
2026-08-14 14:53:30 +08:00
屈轩
c4e43ba92a
fix(cloudmon): cloudpods metric pull delay time ( #25321 )
2026-08-14 10:37:49 +08:00
Zexi Li
276c224ba1
feat(k8s): add cluster history-data-clean climc command ( #25299 )
2026-08-11 13:54:56 +08:00
wanyaoqi
da589b9c11
fix(host): slvm create from snapshot ( #25267 )
2026-08-04 10:23:43 +08:00
Zexi Li
ea778cfb0c
fix(seclib2): support Ed25519 encryption ( #25254 )
...
Handle Ed25519 public and private keys in the AES-based encryption path.
Add round-trip coverage for OpenSSH and PKCS#8 private keys.
Co-authored-by: hechang <117586514+Haibersut@users.noreply.github.com >
2026-07-30 10:35:46 +08:00
wanyaoqi
6cbf217ac0
fix(host-deployer): bond netplan add vlan subinterface config ( #25180 )
2026-07-20 12:20:41 +08:00
wanyaoqi
e5b125f612
fix(host-deployer): windows disk extend separate partition and filesystem ( #25140 )
2026-07-20 12:06:09 +08:00
屈轩
0126f3d037
fix(cloudid): batch detach policy ( #25166 )
2026-07-16 19:09:05 +08:00
wanyaoqi
7cb8d41e58
fix(region): reset guest quorum child index on guest shutdown ( #25135 )
2026-07-14 00:09:59 +08:00
屈轩
66416baa20
fix(region): split sync and probe worker ( #25102 )
2026-07-13 13:59:39 +08:00
Jian Qiu
77cf07c8a4
fix: allow deleting idp without checking project count ( #25110 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-07-10 08:35:00 +08:00
Jian Qiu
8a1fab5d2e
fix: host order by sql redundant group by ( #25112 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-07-09 14:22:31 +08:00
wanyaoqi
e65bd987f9
fix(host-deployer): mount procfs before deploy guestfs ( #25088 )
2026-07-01 00:53:42 +08:00
Zexi Li
33dc4be43b
feat(scheduler): append GPU reserved resource hints on predicate failure ( #25082 )
2026-06-30 15:39:38 +08:00
Jian Qiu
f379e46c1c
fix(host-deployer): do base64 windows password ( #25077 )
...
Co-authored-by: wanyaoqi <d3lx.yq@gmail.com >
2026-06-28 08:25:04 +08:00
wanyaoqi
4a2b0daff7
fix(region): snapshot validate add check guest is quorum master guest ( #25053 )
2026-06-24 10:30:29 +08:00
屈轩
5ca3183cb8
fix(region): remove debug log ( #25043 )
2026-06-17 14:50:29 +08:00
屈轩
a66b0676b4
fix(region): struct tag fix ( #25025 )
2026-06-15 11:04:24 +08:00
屈轩
b6f9afffc7
fix(region): optimized sku query ( #25010 )
2026-06-11 14:31:37 +08:00
屈轩
b4bfff0537
fix(region): avoid panic ( #24990 )
2026-06-08 10:58:24 +08:00
屈轩
880bc365b4
fix(monitor): skip disable account alert ( #24981 )
2026-06-05 16:14:32 +08:00
wanyaoqi
56f9e78473
fix(host): check cluster is valid before do qemuimg convert ( #24945 )
2026-06-02 20:01:13 +08:00
屈轩
6f345745e2
fix(region): filter zone region by read only ( #24952 )
2026-06-02 11:12:51 +08:00
屈轩
99bb2e40fc
fix(region): avoid create huawei windows server fail ( #24941 )
2026-06-01 15:52:52 +08:00
屈轩
2cd6cd7d15
fix(host-deployer): lvm lock ( #24928 )
2026-05-29 15:01:25 +08:00
屈轩
95a0943fa3
fix(region): skip useless addition network wire create ( #24896 )
2026-05-25 19:46:08 +08:00
Zexi Li
8c71444b5a
fix(region): prefer check_code series for lb backend check_status ( #24880 )
2026-05-22 14:20:32 +08:00
Jian Qiu
d2f0054369
fix: set bridge up after created ( #24875 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-05-21 20:31:29 +08:00
Zexi Li
0c480255f6
fix(region): ensure lb backend check_status returned when check_code missing ( #24858 )
2026-05-21 10:39:01 +08:00
Zexi Li
fbf8be3f70
fix(region): query metrics from monitor service ( #24838 )
2026-05-19 18:01:09 +08:00
屈轩
9beb4f54c0
fix(region): update gp3 disk size ( #24811 )
2026-05-12 17:27:29 +08:00
屈轩
8ef501a7da
fix(region): avoid vm set status start fail when serivce restart ( #24766 )
2026-05-06 12:41:04 +08:00
wanyaoqi
40f515c2a8
fix(host): auto merge backinf file generate disks index ( #24752 )
2026-05-03 22:38:45 +08:00
屈轩
0958695fc8
fix(region): optimized listener rule list ( #24743 )
2026-04-29 14:09:41 +08:00
Jian Qiu
6f0f33d852
fix: create redirect lb listener fail ( #24727 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-04-27 10:01:36 +08:00
屈轩
3dfc790697
fix(region): lb redirect rule create validate ( #24730 )
2026-04-27 10:01:00 +08:00
wanyaoqi
8fdbb0544d
fix(host): usb device passthrough use hostport ( #24707 )
2026-04-23 13:52:27 +08:00
Jian Qiu
5e09f581ee
fix: handling deleted task object ( #24700 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-04-23 10:19:02 +08:00
Zexi Li
bf3dfa7a32
fix(scheduler): refactor the pending usage logic ( #24704 )
2026-04-21 15:03:23 +08:00
Matt Gideon
4ae5acb1f0
fix(host): fix isolated device detection regex for PCI and USB devices ( #24691 )
2026-04-20 14:04:36 +08:00
屈轩
c6d2a560d8
fix(region): show associate info ( #24689 )
2026-04-17 10:10:35 +08:00
屈轩
9f37a88f4d
fix(esxi-agent): support esxi vm forder name same with vm name ( #24665 )
2026-04-13 09:50:53 +08:00
屈轩
2564061744
fix(region): support query public cloud vm modification types ( #24655 )
2026-04-10 16:54:10 +08:00
wanyaoqi
cce183a1f9
fix(region): optimize fetchHostGuestResource ( #24632 )
2026-04-10 16:51:43 +08:00
Jian Qiu
9263be65e4
fix: vpcagent sync inconsistent networkaddress guestnetwork id ( #24658 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-04-10 14:44:40 +08:00
屈轩
e8a616583c
fix(cloudmon): vendor update ( #24644 )
2026-04-09 16:33:17 +08:00
Jian Qiu
a9f7553353
fix: upgrade coredns to v1.10.1 at 3.11 ( #24520 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-04-08 16:26:31 +08:00
Jian Qiu
47bf62bc91
fix: undo pr 24532 ( #24636 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-04-08 16:25:01 +08:00
屈轩
d6602a6bd4
fix(region): clean guest network when purge zone ( #24628 )
2026-04-07 20:55:50 +08:00
屈轩
2fe2630591
fix(region): esxi wire sync ( #24618 )
2026-04-04 12:17:04 +08:00
Zexi Li
7ed5274b52
feat(host): support CTyunOS rootfs ( #24614 )
2026-04-02 17:48:23 +08:00
Jian Qiu
8fbf3f25da
fix(host): use findmnt instead of df to detect local mount point ( #24601 )
...
Co-authored-by: Haibersut <117586514+Haibersut@users.noreply.github.com >
2026-03-31 18:11:53 +08:00
屈轩
7af69401d0
fix(logger): add syslog init log ( #24557 )
2026-03-26 18:10:46 +08:00
wanyaoqi
045b389582
Automated cherry pick of #24544 : fix(host): metadata handler proxy telegraf data fix tenant_id ( #24547 )
...
* fix(host): metadata handler proxy telegraf data
* fix(host): append unknown dmesg to last entry
2026-03-25 10:34:51 +08:00
Jian Qiu
964e07c25b
fix: lbagent genHaproxyConfig possible nil pointer panic ( #24536 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-03-25 10:32:21 +08:00
wanyaoqi
c2481a169a
fix(host): dd zero to lv wife partitions on lvremove ( #24522 )
2026-03-23 19:01:13 +08:00
wanyaoqi
12e4295246
fix(host-deployer): resizefs add fstype LVM2_member ( #24519 )
2026-03-23 00:01:30 +08:00
屈轩
3ed7badc44
fix(apigateway): stream download content-type ( #24510 )
2026-03-20 13:41:50 +08:00
wanyaoqi
fa0727febc
Automated cherry pick of #24473 : fix(glance): cache images to ceph add brand filter ( #24478 )
...
* fix(glance): cache images to ceph add brand filter
* fix(region): iso image support default uefi boot mod
2026-03-19 11:45:30 +08:00
Jian Qiu
9081989106
fix: logger add app-options-show api ( #24492 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-03-19 11:43:43 +08:00
屈轩
dba7f0e485
fix(region): allow set disk auto-delete attribute ( #24489 )
2026-03-19 10:28:02 +08:00
wanyaoqi
204d20902b
fix(baremetal-agent): bm register reuse baseprepare updateBmInfo ( #24475 )
2026-03-18 10:10:43 +08:00
屈轩
eab3446420
fix: add more log info ( #24463 )
2026-03-17 14:39:18 +08:00
屈轩
7884faa750
fix(region): avoid delete ksyun vm error ( #24443 )
2026-03-13 15:23:23 +08:00
屈轩
b789623c49
fix(cloudmon): update volc api ( #24425 )
2026-03-11 16:54:56 +08:00
屈轩
fca28611b7
fix(region): vendor update ( #24415 )
2026-03-11 11:13:25 +08:00
屈轩
c76fa472bd
fix(region): persistence server status change ( #24410 )
2026-03-10 15:06:53 +08:00
Zexi Li
c6ea0e0c11
fix(monitor): 仅在 From/To/Interval 为空时设置默认值 ( #24398 )
...
setDefaultValue 中 From、To、Interval 改为仅在当前值为空时
才用 inputQuery 覆盖,避免覆盖用户已指定的查询时间范围与间隔
2026-03-06 19:13:40 +08:00
屈轩
2350dfe716
fix(esxi-agent): vendor update for rebuild root fail ( #24379 )
2026-03-03 00:10:34 +08:00
屈轩
2d3f07986c
fix(region): check bind disk resource ( #24373 )
2026-03-02 12:02:58 +08:00
屈轩
1104c23723
fix(region): avoid sync remove disk ( #24364 )
2026-02-27 15:06:21 +08:00
Jian Qiu
e6e45d4a43
fix: allow uncache deleted image ( #24351 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-02-26 23:07:48 +08:00
Zexi Li
019ff850eb
fix(monitor): convert SNodeAlert to SCommonAlert in FetchCustomizeColumns ( #24347 )
...
Pass cObjs of type *SCommonAlert to SCommonAlertManager.FetchCustomizeColumns
instead of *SNodeAlert so the parent correctly fetches common alert columns.
2026-02-25 19:32:19 +08:00
屈轩
dd34160d47
fix(region): avoid account sync cost time abnormal ( #24337 )
2026-02-24 17:34:06 +08:00
Jian Qiu
ff5f0e8149
fix: ensure s3 client init for s3 storage driver ( #24320 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-02-12 10:01:00 +08:00
屈轩
ac722ce090
fix(yunionconf): policy scope ( #24316 )
2026-02-11 11:24:01 +08:00
wanyaoqi
eddcc4f994
fix(host): set dmesg parse failed log level to debug ( #24307 )
2026-02-11 00:26:46 +08:00
屈轩
afd44581dd
fix(notify): notify receiver ( #24299 )
2026-02-09 20:42:47 +08:00
wanyaoqi
2d7f32b88c
fix(host): deploy nics config defore do add nics ( #24274 )
2026-02-09 08:37:31 +08:00
屈轩
41902f27d5
fix(region): vendor update ( #24267 )
2026-02-07 13:52:17 +08:00
wanyaoqi
4556c22991
fix(region,host): rename screen dump info structure ( #24256 )
2026-02-06 18:10:27 +08:00
屈轩
1e8e8f5b7e
fix(region): snapshot policy operation ( #24250 )
2026-02-05 16:40:36 +08:00
wanyaoqi
2dd642db85
fix(glance): set s3 bucket name before s3 init check ( #24235 )
2026-02-04 19:33:45 +08:00
屈轩
f2408e393d
fix(yunionconf): support tags ( #24233 )
2026-02-04 17:14:08 +08:00
屈轩
5c7a5c4080
fix(region): public cloud sku create ( #24228 )
2026-02-04 14:57:40 +08:00
屈轩
57b33e3f09
fix(region): support cloudpods vm disk driver ( #24223 )
2026-02-04 14:28:17 +08:00
Zexi Li
5fcc576c51
fix(region,climc): persist netinterface vlan_id to hostnetwork ( #24212 )
...
- climc: add VlanId to host-add-netif, host-remove-netif, host-enable-netif,
host-disable-netif
- region: set bn.VlanId from netif.VlanId when attaching to network
- mcclient: include Vlan_ID in baremetalnetworks list columns
2026-02-04 11:03:01 +08:00
屈轩
a46bcdf352
fix(region): avoid duplicate check when update account aksk ( #24207 )
2026-02-03 20:53:00 +08:00
屈轩
b07b85f6ae
fix(region): init snapshot policy disk table ( #24200 )
2026-02-02 20:38:21 +08:00
wanyaoqi
37b5a8349e
fix(host): guestnetworksync do nothing on detach vfio nic ( #24176 )
2026-02-02 19:02:20 +08:00
屈轩
6f25809735
fix(climc): sku create support arch ( #24188 )
2026-02-02 14:17:18 +08:00
屈轩
4fe2a11223
fix(notify): support webhook sign ( #24183 )
2026-02-02 12:54:01 +08:00
wanyaoqi
69c374f573
fix(host): live migrate add timeout ( #24127 )
2026-02-01 20:25:02 +08:00
wanyaoqi
14ece0ba20
fix(region): server add set network num queues ( #24160 )
2026-02-01 20:13:28 +08:00
wanyaoqi
c0acbd627e
fix(glance): set glance s3 bucket name default onecloud-images ( #24169 )
2026-02-01 20:11:08 +08:00
wanyaoqi
1e62546d2f
fix(region): have agent add check is telegraf deployed ( #24144 )
2026-01-29 10:34:05 +08:00
屈轩
a2f631d749
fix(region): billing resource create time ( #24142 )
2026-01-28 19:59:57 +08:00
屈轩
c816e075e4
fix(glance): support prob iso image ( #24135 )
2026-01-28 15:29:11 +08:00
屈轩
7d5d6a8339
fix(region): vendor update ( #24120 )
2026-01-23 17:03:42 +08:00
Jian Qiu
f87d58cf6e
fix: user filter revisit ( #24103 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-01-20 00:45:23 +08:00
Jian Qiu
be2d19d37c
fix: notify receiver update precedure recode ( #24101 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-01-20 00:15:56 +08:00
wanyaoqi
65cbea196f
fix(host): ensure scsi pci addr on add scsi disk ( #24096 )
2026-01-19 20:16:20 +08:00
屈轩
45e6c8cf59
fix(region): vendor update ( #24093 )
2026-01-19 14:45:51 +08:00
Zexi Li
a36039ccc1
fix(telegraf-raid-plugin): working for victoria metrics ( #24086 )
2026-01-15 17:20:52 +08:00
Jian Qiu
a4b5078997
fix: detailed apigateway auth failure log ( #24078 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2026-01-15 10:13:42 +08:00
屈轩
4ba88e37cd
fix(region): vendor update ( #24081 )
2026-01-14 14:05:35 +08:00
屈轩
411a6df9f9
fix(glance): avoid context warnning ( #24075 )
2026-01-14 10:54:58 +08:00
屈轩
2ba0bdfee7
fix(region): avoid panic when update user resource ( #24072 )
2026-01-13 18:21:04 +08:00
屈轩
dffd2aa2d9
fix(common): skip octet-stream warnning ( #24069 )
2026-01-13 18:20:40 +08:00
屈轩
fec5f1f8a7
fix(region): remove useless mod ( #24062 )
2026-01-12 14:15:00 +08:00
屈轩
23e3234d8d
fix(region): add billing resource check ( #24059 )
2026-01-12 12:37:38 +08:00
屈轩
f6928c9ca9
fix(region): host schedtag sync ( #24057 )
2026-01-11 18:33:51 +08:00
屈轩
e479741459
fix(region): allow batch resize disk ( #24051 )
2026-01-09 14:05:01 +08:00
屈轩
5560cc9371
fix(monitor): optimized common alert list ( #24044 )
2026-01-09 10:10:04 +08:00
wanyaoqi
91061f28cc
fix(host): add query id on detect qemu machine info ( #24045 )
2026-01-09 08:24:53 +08:00
屈轩
f359c67632
fix(monitor): optimized monitor resource list ( #24040 )
2026-01-08 15:23:33 +08:00
Zexi Li
7355547b2b
fix(monitor): resource id deduplication of alert record ( #24034 )
2026-01-07 11:16:17 +08:00
Zexi Li
bcf544574f
fix(monitor): fill resource ids of the cloud account ( #24031 )
2026-01-06 19:44:50 +08:00
屈轩
9a01e1fdb3
fix(region): show pretty error ( #24022 )
2026-01-06 10:29:45 +08:00
wanyaoqi
7d92eb9a63
fix(scheduler): correct mem_free = (mem_total - mem_reserved) * mem_cmtbound ( #23982 )
2025-12-29 11:17:53 +08:00
wanyaoqi
6bf92e0ea7
fix(climc): host set memory commit bound incorrect params ( #23973 )
2025-12-29 11:01:43 +08:00
wanyaoqi
5eae491d47
fix(glance): image disk_format use String2ImageFormat ( #23991 )
2025-12-29 11:01:22 +08:00
Jian Qiu
532f4eb1db
fix: change OutOfResource http status code to 507 ( #23988 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-12-29 10:59:22 +08:00
屈轩
26fd3424f3
fix(region): show host cpu and mem usage ( #23999 )
2025-12-25 21:58:07 +08:00
屈轩
395bc3f317
fix(region): update private cloud host cpu and mem usage by cloudmon ( #23985 )
2025-12-24 19:21:30 +08:00
屈轩
865a019ba3
fix(region): show guest nic index ( #23957 )
2025-12-24 11:33:30 +08:00
Jian Qiu
16ce2a6a66
feature: assume user login support ( #23961 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-12-23 13:53:54 +08:00
wanyaoqi
7c69f96725
feat(baremetal-agent): Linux PCIE disk support mdadm soft raid ( #23725 )
...
* feat(baremetal-agent): Linux PCIE disk support mdadm soft raid
* fix(baremeta-agent): soft raid support intel imsm
* fix: update baremetal-agent base
2025-12-22 13:29:47 +08:00
wanyaoqi
231711d0fb
fix(region): guest usage by arch ( #23954 )
2025-12-22 11:42:34 +08:00
屈轩
7c3929bc5e
fix(region): allow clean history data ( #23950 )
2025-12-19 12:42:18 +08:00
屈轩
c6f3e714ee
fix(region): disable sync schedtags ( #23943 )
2025-12-16 20:41:02 +08:00
屈轩
73076cfc19
fix(region): disable cloudpods auto create project ( #23938 )
2025-12-15 15:51:43 +08:00
屈轩
4455a99645
fix(region): add provider info for sync log ( #23933 )
2025-12-15 13:47:31 +08:00
Zexi Li
c6502eebd7
fix(monitor): meter alert panic ( #23919 )
2025-12-12 10:20:03 +08:00
屈轩
3b7615b264
fix(region): aliyun system disk size ( #23927 )
2025-12-12 10:19:47 +08:00
Jian Qiu
7132a3be67
fix: splitable not function due to empty datefield ( #23907 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-12-09 13:34:16 +08:00
Zexi Li
06482d2f20
fix(monitor): filter baremetal host for no data query ( #23892 )
2025-12-03 16:18:01 +08:00
屈轩
557715bea3
fix(region): optimized backend sync ( #23891 )
2025-12-03 15:14:22 +08:00
屈轩
0d2cb66dc1
fix(region): aliyun vnc addr ( #23885 )
2025-12-03 14:04:22 +08:00
wanyaoqi
166b4b34f5
fix(host,host-deployer): host-deployer add password quality check ( #23873 )
2025-12-02 17:02:24 +08:00
屈轩
27f44e909a
fix(region): vendor update ( #23869 )
2025-11-30 17:23:59 +08:00
Zexi Li
52962980c5
fix(monitor): filter alertrecords by alert_name and res_name ( #23866 )
2025-11-28 18:58:31 +08:00
屈轩
01cd87d8eb
fix(region): vendor update ( #23860 )
2025-11-27 20:36:01 +08:00
wanyaoqi
323b64116a
fix(host): host handlers use gotypes check ret value is nil ( #23848 )
2025-11-27 19:19:44 +08:00
Zexi Li
4a3a9f1b11
fix(monitor): alert shield is not working ( #23863 )
2025-11-27 19:18:56 +08:00
屈轩
f22db65285
fix(keystone): change token AuditIds width ( #23850 )
2025-11-27 17:19:28 +08:00
Zexi Li
9024e78dfc
fix(monitor): threshold_range message ( #23856 )
2025-11-27 16:47:32 +08:00
Zexi Li
92be2b6d11
feat(monitor): support threashold range ( #23854 )
2025-11-27 15:11:28 +08:00
Zexi Li
859384643f
feat(climc): support --ouput option for pprof command ( #23841 )
2025-11-27 14:18:46 +08:00
屈轩
d8ea9f576a
fix(region): vendor update ( #23845 )
2025-11-26 16:57:09 +08:00
wanyaoqi
56711f01f2
fix(region,host): perform screendump no save to s3 ( #23824 )
2025-11-26 01:00:12 +08:00
wanyaoqi
d9660431fd
fix(region): disk take snapshot check backing snapshot is merged ( #23823 )
2025-11-26 00:58:45 +08:00
屈轩
2e58bba807
fix(region): support vmware resource pool ( #23828 )
2025-11-25 19:07:27 +08:00
屈轩
19c0680c4b
fix(region): vendor update ( #23821 )
2025-11-24 14:20:33 +08:00
Jian Qiu
d2c6e5514f
fix: validate policy role delete condition ( #23810 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-11-21 12:03:20 +08:00
Zexi Li
e175225af5
fix(monitor): alerting level ( #23802 )
2025-11-21 10:27:13 +08:00
Jian Qiu
3fccc13548
fix: region-dns not support dameng dialect ( #23797 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-11-21 09:55:56 +08:00
屈轩
4b78268ff6
fix(region): snapshot policy resource purge ( #23804 )
2025-11-20 23:42:00 +08:00
Zexi Li
ae45d0d1d1
fix(monitor): title of notification by language context ( #23798 )
2025-11-20 20:11:42 +08:00
屈轩
8e9f4c12c2
fix(monitor): avoid panic ( #23796 )
2025-11-20 18:43:24 +08:00
屈轩
6e9b1e790f
fix(host): format sLsusbTree field content json tag ( #23793 )
...
Co-authored-by: 云原生驿站 <33771248+CloudCourierStation@users.noreply.github.com >
2025-11-20 18:26:27 +08:00
Zexi Li
2fc05e9bbb
fix(monitor): check if LastSendNotification is zero ( #23783 )
2025-11-20 18:03:57 +08:00
屈轩
ef046d10c9
fix(region): migrate snapshot policy resource ( #23790 )
2025-11-20 17:38:35 +08:00
屈轩
350028425e
fix(cloudmon): account balance metric with tenant_id ( #23786 )
2025-11-20 14:22:33 +08:00
屈轩
49b7f9df7e
fix(cloudmon): avoid undetected new resources ( #23779 )
2025-11-20 10:46:07 +08:00
Zexi Li
11ec38b8b7
fix(baremetal-agent): msdos typo in grub configuration ( #23774 )
2025-11-20 10:39:04 +08:00
Jian Qiu
0de6db47a8
fix: diskbackup fail to syncstatus on offline backend ( #23763 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-11-19 10:46:37 +08:00
屈轩
9e72da7b1e
fix(region): esxi vm folder ( #23751 )
2025-11-17 18:10:02 +08:00
屈轩
1875cf7bd6
fix(region): server sku create status ( #23750 )
2025-11-17 17:01:08 +08:00
wanyaoqi
c1e814ba6e
feat(region,host): host dmesg collect ( #23721 )
2025-11-17 15:44:33 +08:00
Jian Qiu
ea87fbb8aa
fix: filter schedtags by zones ( #23744 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-11-15 18:30:15 +08:00
Zexi Li
453d47c99b
feat(cloudcommon): add ExtraHook steps to joint model ( #23741 )
2025-11-14 10:50:58 +08:00
Zexi Li
3ae144e233
fix(host): SHostPingTask was stuck by calling docker command ( #23734 )
2025-11-13 20:19:28 +08:00
屈轩
873a5d6b16
fix(region): scope resource ( #23737 )
2025-11-13 14:43:52 +08:00
wanyaoqi
1b212051a9
fix(region,scheduler): check is BIOS boot request on uefi predicate ( #23717 )
2025-11-11 13:45:11 +08:00
Zexi Li
a34da1092c
fix(baremetal): power status of server is not synced ( #23689 )
2025-11-10 09:56:39 +08:00
屈轩
aa394ead62
fix(region): allow delete server sku ( #23695 )
2025-11-05 18:19:59 +08:00
屈轩
039a69eed6
fix(region): add device for disk ( #23692 )
2025-11-05 15:57:50 +08:00
屈轩
8ddca94bdc
fix(scheduler): sku predicate with empty zone id ( #23686 )
2025-11-04 20:56:30 +08:00
Zexi Li
beb3e9f9fd
fix(baremetal-agent): chose root disk by pci path ( #23682 )
2025-11-04 20:09:12 +08:00
Jian Qiu
bdc3693c2b
fix: rename check when change project ( #23676 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-11-04 16:07:59 +08:00
屈轩
260b8557d8
fix(region): optimized aws server sku sync ( #23675 )
2025-11-03 22:32:27 +08:00
屈轩
e0706a1b43
fix(region): metadata filter by value ( #23672 )
2025-11-03 19:24:40 +08:00
屈轩
0ba9578ec7
fix(region): optimzed server sku sync ( #23664 )
2025-11-03 15:13:55 +08:00
屈轩
1a1feba74d
fix(region): disk filter by server ( #23660 )
2025-11-01 13:32:35 +08:00
屈轩
5427facb6a
fix(region): optimized filter sku by zone ( #23657 )
2025-11-01 13:04:56 +08:00
屈轩
6b347bf00c
fix(region): vendor update ( #23654 )
2025-11-01 13:04:07 +08:00
Zexi Li
357a0f22e3
fix(scheduler): enable profiling ( #23642 )
...
* fix(scheduler): enable profiling
* feat(scheduler): cache NetworkAdditionalWire
2025-10-31 10:19:24 +08:00
屈轩
b4fd2eb122
fix(region): sku cpu mem sync ( #23650 )
2025-10-30 22:32:11 +08:00
屈轩
a846649f1c
fix(region): filter disks by server list ( #23645 )
2025-10-30 17:24:47 +08:00
Zexi Li
a10ea01c84
fix: backend proxy worker count ( #23636 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-10-30 10:07:01 +08:00
屈轩
2bb2742bf0
fix(region): vendor update ( #23640 )
2025-10-30 10:06:28 +08:00
Zexi Li
cd68e4c156
fix(host): move the hostInstance.Init() step after InitAuth ( #23622 )
2025-10-28 19:28:46 +08:00
屈轩
78fa396097
fix(region): set ksyun tag ( #23612 )
2025-10-24 22:59:17 +08:00
Zexi Li
b4876fa013
chore(ci): turn off goimports-check rule ( #23609 )
2025-10-24 15:49:14 +08:00
Jian Qiu
ea51d3f05f
fix: rpm/deb support postinst/preinst/prerm/postrm hooks ( #23595 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-10-23 01:03:33 +08:00
Jian Qiu
d74b732b86
fix: suport bulding multi-arch rpm deb ( #23571 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-10-22 23:53:36 +08:00
屈轩
7d36c1fe1b
fix(keystone): fetch domain user count ( #23592 )
2025-10-22 16:25:59 +08:00
wanyaoqi
606916760b
fix(region,host,scheduler): add check kvm cpu max on cpu predicate ( #23513 )
2025-10-22 15:04:58 +08:00
屈轩
106f7b3d2a
fix(region): disable cloudprovider when sync lost ( #23583 )
2025-10-22 11:30:29 +08:00
屈轩
807454ab63
fix(region): vendor update ( #23580 )
2025-10-22 11:12:12 +08:00
屈轩
d5711d7d64
fix(region): adjust the ip_addr character length ( #23564 )
2025-10-21 10:45:15 +08:00
屈轩
b999ad72ac
fix(glance): add notify for image create ( #23555 )
2025-10-16 14:31:02 +08:00
wanyaoqi
fedf62f75b
fix(webconsole): baremteasl ipmi sol instance_name hide password ( #23536 )
2025-10-16 00:02:18 +08:00
屈轩
451d289903
fix(region): valid essd pl0 disk resize ( #23547 )
2025-10-15 17:25:14 +08:00
屈轩
93101837f7
fix(region): vendor update ( #23541 )
2025-10-15 10:57:57 +08:00
屈轩
a7bc8c0fff
fix(region): support change storage type ( #23531 )
2025-10-14 19:06:08 +08:00
屈轩
d913be0312
fix(region): healt status ( #23526 )
2025-10-13 18:51:12 +08:00
屈轩
c8efe3d1e6
fix(keystone): distribute permissions when the organization changes ( #23503 )
2025-10-13 18:49:53 +08:00
屈轩
d7b0a10ad9
fix(region): private zone create status ( #23522 )
2025-10-13 18:05:33 +08:00
wanyaoqi
73049f487a
fix(host): ensure host wire marshal nil value ( #23500 )
2025-10-12 11:04:11 +08:00
屈轩
d9060328fc
fix(region): server sku create with region id ( #23510 )
2025-10-11 16:55:02 +08:00
wanyaoqi
ccf1694237
fix(region,glance,host-deployer): guest image support bios boot mode detect ( #23284 )
2025-10-11 10:20:45 +08:00
Zexi Li
2cb0437596
fix(baremetal): ensure the execution of the BaremetalServerDestroyTask ( #23495 )
2025-10-09 17:07:10 +08:00
Jian Qiu
c88e8fef1b
fix: ignore e2fsck errors if retcode < 4 ( #23487 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-10-09 16:31:16 +08:00
wanyaoqi
2ca2435595
fix(host): disk resize error input params ( #23491 )
2025-10-09 13:26:29 +08:00
Jian Qiu
30bac52d1c
fix: network manager supports ipv4 static routes for 3.11 ( #23484 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-10-08 13:18:00 +08:00
Jian Qiu
74a8b5667f
fix: support network manager connection profiles ( #23467 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-10-03 09:24:59 +08:00
Jian Qiu
ec3b52930e
fix: default cloud region init error ( #23472 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-10-03 09:24:34 +08:00
屈轩
4703a7094d
fix(cloudmon): metric sync ( #23463 )
2025-09-30 16:53:03 +08:00
屈轩
f8a46a06fc
fix(region): vendor update ( #23460 )
2025-09-30 15:09:50 +08:00
屈轩
a64749ef31
fix(region): host order by virt cpu ( #23455 )
2025-09-30 13:19:04 +08:00
Jian Qiu
defb33a861
fix: hostman master nic may be nil ( #23448 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-30 11:17:37 +08:00
Jian Qiu
ab6f22c5db
fix: s3 common options ( #23443 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-29 19:22:14 +08:00
Jian Qiu
7947bd6686
fix: disable password history unique check by default ( #23436 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-29 15:48:41 +08:00
屈轩
50ab8bf4d4
fix(cloudevent): options changed with etcd ( #23434 )
2025-09-29 12:24:23 +08:00
屈轩
5a5dbed43b
fix(region): vendor update ( #23417 )
2025-09-28 18:04:13 +08:00
wanyaoqi
96b330b6c4
fix(host-deployer): update host-deployer-base to 1.4.11 ( #23412 )
2025-09-28 17:25:49 +08:00
屈轩
d62f1c1149
fix(region): vendor update ( #23406 )
2025-09-28 14:59:03 +08:00
wanyaoqi
2b90c029ee
fix(region,host): guest add vnc screen dump support ( #23374 )
...
* fix(host): update nic confs inside vm on qga delete nics
Signed-off-by: wanyaoqi <wanyaoqi@yunion.cn >
* fix(region,host): guest add vnc screen dump support
---------
Signed-off-by: wanyaoqi <wanyaoqi@yunion.cn >
2025-09-27 12:03:10 +08:00
wanyaoqi
edefdd6ca1
Automated cherry pick of #23386 : fix(host-deployer): allow growpart on primary partition ( #23393 )
...
* fix(host): init cgroup ignore disable cgroup option
* fix(host-deployer): allow growpart on primary partition
2025-09-27 12:01:44 +08:00
屈轩
b6c3aa0a7a
fix(region): vendor update ( #23399 )
2025-09-26 18:05:30 +08:00
屈轩
85bc3abc77
fix(region): vendor update ( #23384 )
2025-09-26 13:53:45 +08:00
屈轩
0bbc92e46d
fix(region): vendor update ( #23369 )
2025-09-24 17:22:57 +08:00
Jian Qiu
4c3186f4a1
Automated cherry pick of #23363 : fix: network filter by ip error for dameng ( #23366 )
...
* fix: network filter by ip error for dameng
* fix: update vendor 20250923
---------
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-23 23:23:00 +08:00
屈轩
6722c43868
fix(region): add expired release notify hour options ( #23350 )
2025-09-22 10:58:08 +08:00
Jian Qiu
e4391b9cce
fix: linux sshd_config support ( #23336 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-20 00:39:04 +08:00
Zexi Li
70887c8d58
fix(scheduler): watch serversku ( #23327 )
2025-09-19 23:49:56 +08:00
屈轩
66840c2c16
fix(region): rds backup sync ( #23307 )
2025-09-19 23:47:16 +08:00
wanyaoqi
34b417c60b
fix(host,host-deployer): support lvm disk resize ( #23333 )
...
- add resize lvm disk support
- support qga online resize disk partitions and filesystems
2025-09-19 23:45:47 +08:00
Jian Qiu
b96abf5af6
fix: check os_arch when server rebuilding root ( #23337 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-19 23:44:20 +08:00
屈轩
433747ff99
fix(notify): optimized workwx access token expired time ( #23324 )
2025-09-18 14:55:28 +08:00
Zexi Li
614b13cd13
fix(monitor): diffTagKeys are empty when only one series in results ( #23310 )
2025-09-18 07:49:04 +08:00
屈轩
d7f0a6f065
fix(region): remove debug sql ( #23319 )
2025-09-17 16:54:29 +08:00
屈轩
160b6e3faf
fix(cloudmon): alert metric with tenant id ( #23316 )
2025-09-17 16:34:51 +08:00
wanyaoqi
7a82d04f70
feat(host): cgroupv2 support ( #23304 )
2025-09-16 23:20:18 +08:00
屈轩
104c927e74
fix(climc): sku create params ( #23300 )
2025-09-15 15:33:30 +08:00
屈轩
2d795063dd
fix(region): support gcp shared vpc and image ( #23297 )
2025-09-12 23:03:39 +08:00
屈轩
e0ed7e80df
fix(monitor): history alert report ( #23279 )
2025-09-12 15:27:12 +08:00
Zexi Li
c880ee5940
fix(monitor): fetch total alert resources from monitor_resource_alert ( #23274 )
2025-09-10 19:17:20 +08:00
屈轩
88f61e6be2
fix(region): update cloudprovider external id ( #23273 )
2025-09-10 18:59:58 +08:00
Jian Qiu
0777418c63
fix: image self check status ( #23252 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-10 18:57:53 +08:00
屈轩
3ddd2603f8
fix(region): support hyperdisk for gcp ( #23270 )
2025-09-10 15:34:24 +08:00
Zexi Li
1a4a0fe647
fix(climc): monitor-alertrecords-total-alert command ( #23265 )
2025-09-10 14:17:41 +08:00
屈轩
0c090d08f2
fix(region): snapshot policy unbind disks ( #23240 )
2025-09-04 16:57:38 +08:00
屈轩
c37b15a3d0
fix(region): sync prepaid disk expired time ( #23237 )
2025-09-04 16:47:18 +08:00
屈轩
0eb0f9d99c
fix(region): add disk change billing type log ( #23233 )
2025-09-03 20:16:44 +08:00
屈轩
620fd06d87
fix(region): add kafka and mongodb capability ( #23230 )
2025-09-03 19:44:40 +08:00
屈轩
944267af35
fix(region): support more scheme keypair ( #23211 )
2025-09-03 11:01:00 +08:00
Jian Qiu
f40095bd46
fix: fail to delete cas idp due to readonly domain ( #23216 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-03 05:48:27 +08:00
Jian Qiu
4781f552e2
fix: network filter by ipv6 address ( #23226 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-09-03 05:46:31 +08:00
Zexi Li
8eb11e7865
feat(host): add SdnFetchDataFromComputeService option ( #23205 )
2025-09-01 23:15:22 +08:00
屈轩
523653e755
fix(region): avoid change to the same config sku not effective ( #23204 )
2025-09-01 11:50:23 +08:00
Jian Qiu
84dea5ace9
fix: too many recursive locks when batch create ( #23197 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-08-29 23:07:50 +08:00
屈轩
07912a9f8c
fix(region): add cloud_env filter for cachedimages ( #23192 )
2025-08-27 18:34:46 +08:00
Jian Qiu
bd72a48ecb
fix: guest ipv6 vip ( #23181 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-08-27 18:07:55 +08:00
Jian Qiu
4377da3aff
fix: force NetworkManager unmanged physical netinterface ( #23069 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-08-26 15:38:55 +08:00
屈轩
140fda72e6
fix(keystone): show ldap url ( #23175 )
2025-08-26 14:28:47 +08:00
屈轩
521bc94749
fix(keystone): upgrade ldap version ( #23167 )
2025-08-26 13:28:47 +08:00
Jian Qiu
78850c6d03
fix: deploy gai.conf if both v4 and v6 present ( #23164 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-08-25 18:20:09 +08:00
屈轩
32b85c1b28
fix(region): optimized cached image list ( #23156 )
2025-08-22 15:45:04 +08:00
wanyaoqi
ea65acf6ed
fix(scheduler): add session usage timeout options ( #23142 )
2025-08-21 18:10:39 +08:00
屈轩
f09e9f081d
fix(region): avoid update guest disable_delete attribute error when host id is empty ( #23136 )
2025-08-20 16:21:44 +08:00
Zexi Li
78eaa50af1
fix(baremetal): update the grub auto configuration to fix the aarch64 disk boot ( #23127 )
2025-08-20 15:11:14 +08:00
屈轩
d9e8c89711
fix(region): sync lb eip ( #23126 )
2025-08-20 14:14:07 +08:00
Zexi Li
3b34ac8dba
feat(region): fix ISO size display ( #23130 )
...
SGuestcdrom.Size is Byte, not MB
Co-authored-by: happygame <happygame1024@gmail.com >
2025-08-20 12:08:43 +08:00
Zexi Li
b93d913948
fix(baremetal-agent): error occurred when removing logical volumes on the arm64 host ( #23120 )
2025-08-20 12:00:00 +08:00
屈轩
7d2bcd2828
fix(region): sync eip associate resource ( #23113 )
2025-08-19 14:54:55 +08:00
屈轩
76d798044e
fix(region): add storage filter for snapshot ( #23107 )
2025-08-18 14:57:48 +08:00
wanyaoqi
382d51e18c
fix(host): run ifdown script on guest delete ( #23100 )
2025-08-16 14:49:27 +08:00
Jian Qiu
a316053a4f
fix: webconsole skip refererer check by default ( #23093 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-08-16 14:46:16 +08:00
wanyaoqi
634058a832
fix(vpcagent): dhcp enable default gateway on default network ( #23096 )
2025-08-16 14:44:28 +08:00
屈轩
4c2ba4a9c9
fix(scheduledtask): force sync account ( #23086 )
2025-08-14 19:36:19 +08:00
屈轩
e244be79b1
fix(region): server snapshot policy ( #23079 )
2025-08-14 19:21:22 +08:00
屈轩
6615224f93
fix(region): dns record policy type ( #23077 )
2025-08-13 17:48:39 +08:00
wanyaoqi
555d77f9d0
fix(host): lvm guest reload disk before delete snapshot ( #23048 )
2025-08-11 10:32:50 +08:00
wanyaoqi
c15d5ba838
fix(baremetal): agent storagecache input params error ( #23044 )
2025-08-08 18:25:14 +08:00
Jian Qiu
5fce56f5e6
fix: filter guest by multiple ips with exact match ( #23040 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-08-08 17:56:20 +08:00
屈轩
9a5b906d10
fix(region): disk update tag ( #23026 )
2025-08-06 15:52:17 +08:00
Jian Qiu
4d45708d11
fix: always update hostname for rhel-like os ( #23019 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-08-06 01:07:38 +08:00
Jian Qiu
1f39911996
fix: inconsist checksum between image and its same format subimage ( #22989 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-07-30 01:44:47 +08:00
wanyaoqi
d3154a0cde
fix(host,glance): only target qcow2 set cluster size on image convert ( #22976 )
2025-07-30 00:42:30 +08:00
Jian Qiu
a5e4471e1f
fix: glance converts all queued subimages, regardless of format ( #22970 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-07-29 10:25:55 +08:00
wanyaoqi
c00c81f23b
fix(host): set qemuimg convert cluster_size 64k on compat image ( #22964 )
2025-07-29 00:00:57 +08:00
Jian Qiu
061988edea
fix: set default worker parameter ( #22960 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-07-28 14:12:39 +08:00
wanyaoqi
7d453caff6
fix(region): iso boot do not check boot mode ( #22948 )
2025-07-26 02:26:40 +08:00
屈轩
c231b0bc66
fix(apigateway): 移除不必要查询,避免用户登录时间过长 ( #22954 )
2025-07-25 20:36:44 +08:00
wanyaoqi
d83fd7490a
fix(host): host init no numa node ( #22947 )
2025-07-25 00:33:16 +08:00
屈轩
1d7b27e5e3
fix(region): add guest billing type for disk ( #22937 )
2025-07-23 18:53:56 +08:00
屈轩
1f083d2490
fix(region): host order ( #22928 )
2025-07-22 15:20:06 +08:00
屈轩
e7227612ea
fix(region): vendor update ( #22921 )
2025-07-21 17:33:40 +08:00
Jian Qiu
e304c99316
fix: updte vendor 3.11.11 20250718 ( #22915 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-07-18 13:26:50 +08:00
Zexi Li
6c4c73c79e
fix(scheduler): netinterface cache is not informed ( #22898 )
2025-07-15 19:58:11 +08:00
wanyaoqi
ba9457df30
fix(host): check storage id is correct on src migrate prepare ( #22891 )
...
correct disk storage id on dest migrate prepare
2025-07-15 16:12:00 +08:00
屈轩
5027e6bbde
fix(region): add sort for host ( #22878 )
2025-07-11 19:09:04 +08:00
wanyaoqi
13060902a0
fix(region): do not set guest to resuce status on guest running ( #22864 )
2025-07-10 22:10:07 +08:00
屈轩
6c726c7211
fix(region): 修复本地到期释放功能和资源同步冲突 ( #22862 )
2025-07-10 19:38:09 +08:00
wanyaoqi
1b6f13738a
fix(host): add check mem dev is null on guest setup ( #22846 )
2025-07-09 14:15:40 +08:00
屈轩
4455aa2f6d
fix(region): 避免删除虚拟机时,未能正常删除后挂载的磁盘 ( #22844 )
2025-07-07 14:46:23 +08:00
屈轩
345de4a5c3
fix(region): create disk with tags ( #22835 )
2025-07-04 17:08:12 +08:00
屈轩
944953957e
fix(region): vendor update ( #22831 )
2025-07-03 15:17:01 +08:00
屈轩
8775daf05f
fix(region): vendor update for sync mongodb ip addr ( #22819 )
2025-07-03 05:32:46 +08:00
wanyaoqi
7e7e6c1b45
fix(region): host calculate set mem_cmt_bound 1 on host enable hugepage ( #22812 )
2025-07-03 05:29:49 +08:00
wanyaoqi
8ac7f8242a
fix(host): qemuimg convert add cluster_size ( #22791 )
2025-07-03 05:27:13 +08:00
屈轩
a1a5f23fc9
fix(region): vendor update ( #22808 )
2025-07-02 21:01:23 +08:00
屈轩
c5871a0d2f
fix(notify): support dingtalk robot sign ( #22768 )
2025-06-23 16:59:44 +08:00
屈轩
7bae678b01
fix(cloudmon): cloudpods collect metric interval ( #22765 )
2025-06-23 16:17:28 +08:00
屈轩
4444a0f69c
fix(region): sync remove backend group ( #22760 )
2025-06-20 19:38:33 +08:00
屈轩
4360870e5f
fix(region): support skip sync server by tag value ( #22755 )
2025-06-20 19:26:52 +08:00
屈轩
5f56de3c5d
fix(region): vendor update ( #22751 )
2025-06-20 18:12:48 +08:00
Jian Qiu
ace1efdb51
fix: use goid to identify differnt goroutine ( #22741 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-06-19 14:50:31 +08:00
Zexi Li
831a3044df
Automated cherry pick of #22729 : Monitor worker alert ( #22736 )
...
* fix(monitor): GetMetricMeasurement 接口只查询过去30m的数据
避免数据过多导致 victoria-metrics 报错
* fix(monitor): wildchar of alert group by field
2025-06-18 15:27:35 +08:00
屈轩
e93e9a0a8a
fix(region): lb listener rule associate backend group ( #22735 )
2025-06-18 14:15:05 +08:00
Zexi Li
1aa70f504a
fix: panic when there is no secondary IP on the host. ( #22728 )
...
Co-authored-by: glzjin <glzjin2015@gmail.com >
2025-06-17 11:15:22 +08:00
wanyaoqi
2325bc601c
fix(region,host): add auto merge snapshots options, preallocation options ( #22712 )
2025-06-13 15:19:40 +08:00
屈轩
4f68617ea6
fix(region): vendor update ( #22699 )
2025-06-06 19:22:39 +08:00
屈轩
6d8ebbb369
fix(region): enable cloud dns record ( #22696 )
2025-06-06 18:32:06 +08:00
wanyaoqi
d9d93eb921
fix(host): pass decoded userdata to host-deployer ( #22680 )
2025-06-05 23:50:37 +08:00
屈轩
74b79a6231
fix(region): vendor update ( #22679 )
2025-06-05 19:28:06 +08:00
Zexi Li
1e5d035fd9
fix(scheduler): wrong sort order of instance group selection ( #22665 )
2025-06-04 14:27:07 +08:00
Jian Qiu
93f5a49260
fix: update vendor to fix keystone user join project not found ( #22646 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-05-31 18:47:42 +08:00
wanyaoqi
a8d7758c83
feat(host-deployer): deploy vlan subinterface on baremetal hypervisor ( #22630 )
...
- host-deployer add deploy vlan subinterface on baremetal hypervisor
- fix baremetal-agent cache image parse input data
2025-05-30 10:32:10 +08:00
wanyaoqi
cf71a29b67
feat(region,host): qga deploy network config on attach nics ( #22547 )
2025-05-30 10:29:38 +08:00
屈轩
a9eb3872e4
fix(region): vendor update ( #22625 )
2025-05-29 11:23:14 +08:00
屈轩
8e7b136c4b
fix(region): secgroup rule filter ( #22620 )
2025-05-28 18:38:48 +08:00
wanyaoqi
13197c19a4
fix(host): qemu extra params format ( #22608 )
2025-05-27 13:34:04 +08:00
屈轩
66b052741b
fix(region): update qcloud storage type ( #22614 )
2025-05-27 12:44:07 +08:00
wanyaoqi
b020507894
fix(host): check min_free_kbytes size is enough ( #22593 )
2025-05-24 01:11:24 +08:00
屈轩
050932287f
fix(cloudmon): add vm_ip metric for vm ( #22587 )
2025-05-22 10:54:03 +08:00
屈轩
eff18d4808
fix(cloudmon): vm metrics with ips ( #22584 )
2025-05-22 10:41:23 +08:00
屈轩
0bfc818173
fix(region): add filter for secgroup rule ( #22579 )
2025-05-21 19:27:11 +08:00
屈轩
acc6f28e27
fix(region): add account info for sec rules ( #22576 )
2025-05-21 18:40:14 +08:00
屈轩
8f786c2337
fix(region): allow create public server sku ( #22570 )
2025-05-21 14:43:21 +08:00
屈轩
15db145c2d
fix(region): init aliyun storage medium type ( #22565 )
2025-05-20 21:48:39 +08:00
wanyaoqi
2f6ebb265a
fix error when create vm with ceph disk ( #22562 )
...
Co-authored-by: liangkaijun <liangkaijun52013@gmail.com >
2025-05-20 21:27:22 +08:00
屈轩
cd5fb77c59
fix(region): user sync with ctx ( #22556 )
2025-05-19 18:09:31 +08:00
wanyaoqi
ad21f56e1f
fix: vendor update 2505013 ( #22519 )
2025-05-19 01:50:07 +08:00
屈轩
4795331a8b
fix(region): vendor update ( #22545 )
2025-05-16 11:19:55 +08:00
屈轩
cd44f8e218
fix(region): guest disk iops ( #22541 )
2025-05-15 15:46:08 +08:00
屈轩
2a3d2cb725
fix(region): change disk billing type ( #22534 )
2025-05-15 13:22:07 +08:00
屈轩
aa447b1d3f
fix(region): show correct disk iops ( #22537 )
2025-05-15 12:48:34 +08:00
屈轩
78903516ed
fix(common): avoid empty context ( #22510 )
2025-05-12 16:21:22 +08:00
屈轩
6bfc2da7e7
fix(notify): support notify with robotids ( #22504 )
2025-05-09 21:23:11 +08:00
屈轩
4930e191dc
fix(region): vendor update ( #22499 )
2025-05-09 14:56:13 +08:00
屈轩
ae7d4f7d22
fix(common): obj id cache ( #22496 )
2025-05-09 14:50:37 +08:00
屈轩
927e74d42c
fix(region): vendor update ( #22490 )
2025-05-08 18:36:28 +08:00
屈轩
3bd3e1204f
fix(common): policy tag filter cache ( #22486 )
2025-05-08 15:57:15 +08:00
屈轩
f54bfdc5d6
fix(notify): add task_run const ( #22483 )
2025-05-07 20:15:28 +08:00
屈轩
10cb69326a
fix(region): vendor update ( #22468 )
2025-04-27 16:13:15 +08:00
屈轩
e7d453409b
fix(region): optimized policy query ( #22457 )
2025-04-27 11:56:32 +08:00
屈轩
958c8deb86
fix(region): vendor update ( #22454 )
2025-04-23 14:12:19 +08:00
Jian Qiu
eca32b85a2
fix: optimize filterByOwner query speed ( #22445 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-04-20 18:16:54 +08:00
Jian Qiu
de40f28b18
fix: start sync status ( #22443 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-04-20 18:16:39 +08:00
wanyaoqi
909c01b734
fix(host): lvm disk create from esxi ( #22425 )
2025-04-20 18:05:50 +08:00
Jian Qiu
9cfe1c2509
fix: webconsole referer whitelist ( #22421 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-04-20 18:04:01 +08:00
Zexi Li
c2195b97ac
fix(monitor): remove host type query filter ( #22439 )
2025-04-18 12:15:33 +08:00
wanyaoqi
8c817acf2a
fix(monitor): telegraf config add host_ip tag ( #22405 )
2025-04-17 22:35:31 +08:00
Zexi Li
0dfed10e90
fix(monitor): getTagValues no data ( #22434 )
2025-04-17 11:09:26 +08:00
Zexi Li
280eb700a6
fix(scheduler): unused prometheus pkg ( #22430 )
2025-04-16 10:40:25 +08:00
Zexi Li
a9d8445603
fix(scheduler): disable prometheus metrics handler ( #22428 )
2025-04-16 10:35:03 +08:00
屈轩
ce77468604
fix(region): vendor update ( #22424 )
2025-04-15 19:39:14 +08:00
Jian Qiu
fa321a7a1d
fix(host-health): check etcd client is reconnecting ( #22420 )
...
Co-authored-by: wanyaoqi <d3lx.yq@gmail.com >
2025-04-15 18:25:18 +08:00
Zexi Li
7b689a7de6
fix(monitor): support victoria metrics bottom query ( #22417 )
2025-04-15 15:17:03 +08:00
屈轩
3df60efa85
fix(climc): keystone pprof profile ( #22407 )
2025-04-14 15:28:32 +08:00
屈轩
acabecbb61
fix(keystone): password history check default 1 ( #22411 )
2025-04-14 15:27:44 +08:00
wanyaoqi
f0966a0296
fix(host): ignore errors on reconfigure vfio nic bandwidth ( #22370 )
2025-04-13 09:57:14 +08:00
屈轩
b02ef75216
fix(region): add custom total count ( #22398 )
...
Co-authored-by: fourhu <fourhu@foxmail.com >
2025-04-10 16:07:17 +08:00
屈轩
2a0ac9d196
fix(webconsole): require rdp input password ( #22397 )
2025-04-10 11:23:16 +08:00
屈轩
1fa3e39b4b
fix(ansibleserver): show pretty error for ansible playbook ( #22395 )
2025-04-10 10:52:37 +08:00
屈轩
ae9647a060
fix(region): export metadata ( #22393 )
2025-04-09 18:44:44 +08:00
屈轩
3964086aae
fix: update file repo docker script ( #22389 )
2025-04-09 17:27:14 +08:00
屈轩
3e564eefac
fix(region): update gpu used usage ( #22391 )
2025-04-09 17:26:26 +08:00
屈轩
3cbecfb8ce
fix(ansbileserver): update docker file ( #22382 )
2025-04-09 10:54:32 +08:00
屈轩
1cdcf58d2a
fix(host-deployer): add tencentos support ( #22383 )
2025-04-09 09:48:49 +08:00
屈轩
6df5b9168b
fix(region): add gpu unused usage ( #22373 )
2025-04-08 11:40:57 +08:00
Zexi Li
f28519bbbf
fix(monitor): check measurement field ( #22376 )
2025-04-07 18:40:56 +08:00
Jian Qiu
1021d39c15
fix: hide image location ( #22364 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-04-04 08:17:41 +08:00
Jian Qiu
54c4e78470
fix: set db connection keepalive options ( #22357 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-04-03 19:52:29 +08:00
wanyaoqi
4edc483209
fix(region): guestdisk list add auto reset column ( #22346 )
2025-03-26 15:07:13 +08:00
wanyaoqi
2ff5f9331f
fix(monitor): vm_net add bytes and packages measurements ( #22342 )
2025-03-26 15:06:13 +08:00
Jian Qiu
bcfb906879
fix: update vendor 20250325 ( #22338 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-03-25 23:53:41 +08:00
Zexi Li
883a6c38e7
fix(scheduler,monitor): tls 3des ( #22337 )
2025-03-25 21:15:38 +08:00
Zexi Li
8cc49b3bee
fix(monitor): wrong index of details ( #22332 )
2025-03-25 15:31:22 +08:00
Zexi Li
100575e6a8
fix(monitor): wrong TriggerTime ( #22329 )
2025-03-25 11:42:41 +08:00
Zexi Li
0c4b3784e0
optmized(monitor): query alertrecord by res_id ( #22319 )
2025-03-25 10:03:31 +08:00
屈轩
37dca8c6fc
fix(region): vendor update ( #22326 )
2025-03-24 19:49:38 +08:00
Jian Qiu
aeb3b620ed
fix: fail to delete sub images of composed guest image ( #22281 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-03-19 22:26:55 +08:00
屈轩
33f7ca1681
fix(region): add post delete hook ( #22302 )
2025-03-19 10:13:48 +08:00
Zexi Li
9874b4af3f
optimized(keystone): local sql auth by password ( #22305 )
2025-03-19 10:10:55 +08:00
屈轩
ea36eb2e82
fix(monitor): optimized alert list ( #22298 )
2025-03-18 19:52:35 +08:00
屈轩
2a4231658f
fix(region): vendor update ( #22293 )
2025-03-18 16:16:15 +08:00
wanyaoqi
8e4d673139
fix(host): virtio nic add fdb record on has sriov nic ( #22283 )
2025-03-18 15:09:59 +08:00
Zexi Li
d34db8ebf5
fix(webconsole): disable 3des cipher suites ( #22294 )
2025-03-18 13:12:17 +08:00
Zexi Li
357b5c1f43
feat(monitor): support listing monitor_resource by alert_state ( #22287 )
2025-03-18 11:52:25 +08:00
wanyaoqi
2b60f5a217
fix(host): hotplug mem adaptation for guests no memdev ( #22256 )
2025-03-16 00:04:30 +08:00
屈轩
bd2ccad027
fix(region): vendor update ( #22279 )
2025-03-16 00:03:52 +08:00
屈轩
e5d1bbd245
fix(region): vendor update ( #22274 )
2025-03-14 09:59:21 +08:00
屈轩
a27a67f82a
fix(climc): service config bool value ( #22270 )
2025-03-13 14:00:27 +08:00
屈轩
0edb97930e
fix(region): show dump info when worker stuck ( #22251 )
2025-03-12 16:53:00 +08:00
Zexi Li
29438227a7
Merge pull request #22261 from zexi/automated-cherry-pick-of-#22259-upstream-release-3.11
...
Automated cherry pick of #22259 : fix(webconsole,monitor): pprof handlers of gorilla mux
2025-03-11 12:27:43 +08:00
Zexi Li
6efd55eff3
fix(webconsole,monitor): pprof handlers of gorilla mux
2025-03-11 11:57:18 +08:00
wanyaoqi
47ad526e75
feat(glance,region,host): auto cache glance images to ceph storages ( #22246 )
2025-03-08 11:03:37 +08:00
Jian Qiu
bb31b2abfc
fix: auto truncate sql string ( #22243 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-03-08 10:46:33 +08:00
wanyaoqi
698aad1eb1
fix(host): change storage clone disk add encrypt info ( #22229 )
2025-03-08 08:59:23 +08:00
wanyaoqi
9408f234fa
fix(host-deployer): set xfs default ftype 1 ( #22233 )
2025-03-06 11:16:19 +08:00
Zexi Li
1f215d316c
fix(host): not purge isolated device when detaching it ( #22224 )
2025-03-05 19:33:24 +08:00
Jian Qiu
c25e1b5981
fix: glance always init s3 client ( #22129 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-03-03 20:15:29 +08:00
Jian Qiu
58b90f1d9c
fix: add summary-stats options ( #22219 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-03-03 10:10:34 +08:00
Jian Qiu
4756215435
fix: disk copy to storage inherit classmeta ( #22215 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-03-03 10:03:48 +08:00
wanyaoqi
1b37a6ab95
Fix/deploy guest add cpu vendor ( #22206 )
...
* fix(host-deployer): deploy guest add cpu vendor
* fix(host): host generate passwd use strong ruler
2025-02-28 14:12:28 +08:00
wanyaoqi
137d6a674c
fix(host): shared lvm activte with auto activation option ( #22189 )
2025-02-27 16:05:05 +08:00
wanyaoqi
48453911ca
feat(region,host): add guest disk auto reset on shutdown support ( #22195 )
2025-02-27 16:02:44 +08:00
屈轩
77efa95856
fix(esxi-agent): vendor update ( #22203 )
2025-02-27 14:49:24 +08:00
屈轩
b081dc43de
fix(region): fast sync image ( #22185 )
2025-02-26 15:18:23 +08:00
屈轩
e03fc31ba2
fix(region): fix typo ( #22182 )
2025-02-25 17:11:51 +08:00
屈轩
3e43510b5c
fix(region): allow create disk when vm running ( #22171 )
2025-02-25 12:02:12 +08:00
Zexi Li
4a4f529600
fix(monitor,webconsole): enable app profiling ( #22176 )
2025-02-24 19:51:31 +08:00
Jian Qiu
4a2e1cc26d
fix: remove default values from cmtbound columns ( #22157 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-02-24 17:32:06 +08:00
Jian Qiu
68aef7f31c
fix: disable server TLS 1.0, 1.x and 1.2 SHA1 ( #22168 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-02-24 17:30:09 +08:00
屈轩
f32665adf2
fix(region): 允许不同账号dns zone重名 ( #22163 )
2025-02-24 11:11:19 +08:00
wanyaoqi
12f27298b7
fix(region): lvm disk path add dev prefix ( #22150 )
2025-02-21 10:23:34 +08:00
wanyaoqi
1f2d2863b4
fix(region): lvm disk path add dev prefix ( #22105 )
2025-02-21 10:23:15 +08:00
wanyaoqi
4420290011
fix(host): check has vga use desc dev_type instead of host dev object ( #22149 )
2025-02-21 10:22:19 +08:00
wanyaoqi
f4bcf38f72
fix(host): add check default mem dev exist on hotplug ( #22140 )
2025-02-21 10:21:06 +08:00
Zexi Li
6e0f595d8a
fix(climc): show ip column of action-show command ( #22155 )
2025-02-21 10:16:45 +08:00
Zexi Li
3bc77548b6
fix(monitor): always skip_check_series for metric-measurement api ( #22145 )
2025-02-19 19:57:30 +08:00
Zexi Li
d759f836ce
fix(scheduler): 尽早发现子网ip不足引起的调度失败 ( #22131 )
2025-02-19 17:02:38 +08:00
屈轩
29a0d421fc
fix(climc): support create vm with tags ( #22127 )
2025-02-19 16:50:10 +08:00
Zexi Li
60b8ea0021
fix(monitor): split tags and cloud_tags ( #22122 )
2025-02-18 18:29:37 +08:00
屈轩
368ebf5129
fix(region): avoid panic ( #22118 )
2025-02-18 15:52:54 +08:00
wanyaoqi
d1ad8f7998
Automated cherry pick of #22085 : fix(host): update host-base to v0.7.0 ( #22108 )
...
* fix(host): update host-base to v0.7.0
* fix(cronjob): init timezone, timer set location
2025-02-15 00:02:43 +08:00
屈轩
f7f42b0d56
fix(region): support change vm billing type ( #22103 )
2025-02-14 11:33:44 +08:00
屈轩
c1934735f1
fix(region): skip sync server status time range ( #22100 )
2025-02-13 15:18:14 +08:00
Zexi Li
3eab8e495f
fix(lbagent): telegraf configuration panic ( #22095 )
2025-02-13 12:29:44 +08:00
屈轩
3820efa0b4
fix(region): 跳过esxi存储找不到的关联宿主机 ( #22083 )
2025-02-12 12:04:48 +08:00
Zexi Li
b176297a30
fix(monitor): not split resource when notifying ( #22078 )
2025-02-10 19:50:06 +08:00
wanyaoqi
4dcf4283a5
fix(host,host-image): use nbd export images ( #22073 )
2025-02-10 14:16:18 +08:00
屈轩
135fa82ee1
fix(webconsole): avoid high cpu load ( #22069 )
2025-02-06 15:47:18 +08:00
屈轩
518bd57bcb
fix(region): avoid panic ( #22067 )
2025-02-06 14:42:59 +08:00
屈轩
e5c8ca496b
fix(region): aliyun disk resize ( #22062 )
2025-02-05 21:04:51 +08:00
Jian Qiu
eacf7444c0
fix: separate backup worker ( #22063 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-02-05 20:20:37 +08:00
wanyaoqi
e06fbef9f0
fix(host): check image desc is empty ( #22058 )
...
image.inf record chksum or image id not matched will cause image desc empty
2025-02-05 18:54:09 +08:00
屈轩
7848a2eacc
fix(region): resize cloud_auto disk ( #22060 )
2025-02-05 18:03:50 +08:00
屈轩
95b4c9dab0
fix(region): avoid panic ( #22055 )
2025-02-05 17:57:05 +08:00
Jian Qiu
e9ae6171b5
fix: task fetch duplicated id error ( #22052 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-02-05 15:03:27 +08:00
Jian Qiu
2677a402fc
fix: image cache use specific workers ( #22047 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-02-05 11:33:41 +08:00
Zexi Li
8ca9fd5640
optimized(scheduler): reduce scheduling time ( #22031 )
2025-02-05 10:25:27 +08:00
屈轩
2143052cac
fix(region): avoid panic ( #22049 )
2025-02-05 09:56:06 +08:00
wanyaoqi
5b3bb19a84
fix(region): hosts_tbl sys_info use longtext ( #22042 )
2025-01-29 23:59:36 +08:00
wanyaoqi
a3265c0370
fix(host): support sata ahci controller ( #22040 )
2025-01-29 23:58:43 +08:00
Jian Qiu
65199c6487
fix: notify empty receipients ( #22043 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-01-29 21:13:12 +08:00
wanyaoqi
83477a7150
fix(glance): donot umount s3fs on glance exit ( #22038 )
2025-01-28 18:51:44 +08:00
wanyaoqi
7a19870f54
fix(region,host): slvm snapshot delete and instance snapshot purge ( #22021 )
2025-01-26 19:37:57 +08:00
Zexi Li
63e6043e0a
customized(monitor): check whether the measurement field exists in victoriametrics ( #22029 )
2025-01-26 12:24:06 +08:00
wanyaoqi
23d9cc2a55
feat(region,host): hostpinger add cpu usage percent report ( #22007 )
2025-01-25 15:54:57 +08:00
Jian Qiu
016f93ec2c
fix: support server change ipv6 address ( #22014 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-01-25 15:39:52 +08:00
Zexi Li
266732b9b0
fix(glance): query vmware account brand ( #22018 )
2025-01-24 11:51:50 +08:00
屈轩
06c901897b
fix(climc): apigateway endpoint type ( #22013 )
2025-01-23 14:39:12 +08:00
Jian Qiu
569fa010b7
fix: is_classic is missing from network details ( #21995 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-01-21 16:25:25 +08:00
屈轩
0a432e16c4
fix(apigateway): set scope policy binding project id query ( #21999 )
2025-01-20 17:50:45 +08:00
Jian Qiu
4f3e35f110
fix: add summary statistics switch ( #21992 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-01-18 20:14:52 +08:00
Zexi Li
a5c5b7ac39
fix(host): skip detect device that is not GPU class ( #21984 )
2025-01-18 06:14:26 +08:00
屈轩
7dd7c005f6
fix(region): export excel float ( #21981 )
2025-01-16 11:54:51 +08:00
wanyaoqi
e94f62d511
fix(region): snapshot policy with multi disk on same guest ( #21949 )
...
fix(region): delete overdued snapshots on cleanup snapshot task only
2025-01-16 10:42:56 +08:00
Zexi Li
e30f782bb1
fix(host): wrap qemu machine info error ( #21972 )
2025-01-14 20:49:58 +08:00
Jian Qiu
fae0a0dd7e
fix: image update input struct param ( #21963 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-01-14 02:17:55 +08:00
屈轩
daaf2305e7
fix(region): tags export ( #21960 )
2025-01-13 16:49:50 +08:00
wanyaoqi
9734c5187c
fix(region): host list add hide cpu topo info option ( #21946 )
2025-01-13 13:54:40 +08:00
屈轩
3d1befff66
fix(region): vendor update ( #21941 )
2025-01-08 18:47:33 +08:00
屈轩
5c77ddcf00
fix(region): loadbalancer listener create input ( #21938 )
2025-01-08 18:31:32 +08:00
wanyaoqi
12f5f83fce
fix(region): record snapshot last attched host on delete disk ( #21925 )
2025-01-07 20:43:00 +08:00
屈轩
a9816b929f
fix(region): fetch lb backend owner ( #21931 )
2025-01-07 09:40:13 +08:00
Jian Qiu
b25f1f356b
fix: backup storage support sign version ( #21914 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2025-01-01 10:11:12 +08:00
wanyaoqi
4e0df86bf1
Fix/host load servers ( #21894 )
...
* fix(host): load disks init scsi bus
* fix(region,host): delete instance snapshot progress incorrect
2024-12-30 10:31:34 +08:00
Jian Qiu
525e93445e
fix: add more filters to isolated_device ( #21907 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-12-30 10:29:53 +08:00
wanyaoqi
843e6b8e29
Automated cherry pick of #21804 : [WIP] fix: add more action log ( #21875 )
...
* fix: add more action log
* fix(region): add set cmt bound action
2024-12-29 23:08:36 +08:00
屈轩
4c18310404
fix(region): skip record conflict error ( #21899 )
2024-12-26 09:46:50 +08:00
屈轩
b6b5523822
fix(region): qcloud rds cpu option ( #21892 )
2024-12-25 10:54:48 +08:00
wanyaoqi
5e3a7f82cd
fix(host): delete snapshot from storagehandler misc fix ( #21883 )
2024-12-23 20:43:32 +08:00
Zexi Li
8818e68e75
fix(monitor): unknown column returned when group by name tag ( #21870 )
2024-12-20 18:00:42 +08:00
Zexi Li
cee4111854
fix(baremetal): panic when save desc ( #21864 )
2024-12-20 16:18:31 +08:00
屈轩
dc8207ba41
fix(cloudmon): skip pull k8s service info ( #21863 )
2024-12-20 15:49:33 +08:00
屈轩
375d73dd1f
fix(devtool): remove duplicate init db ( #21857 )
2024-12-20 15:34:47 +08:00
屈轩
f9f24ac560
fix(climc): avoid showing help twice ( #21860 )
2024-12-20 15:34:02 +08:00
wanyaoqi
26999afa35
fix(region): disk show io throttles ( #21832 )
2024-12-20 11:41:22 +08:00
wanyaoqi
2419a6f8db
fix(host): optimize storage register failed wiht dup name ( #21835 )
2024-12-20 11:40:14 +08:00
屈轩
8915c4408d
fix(region): expand rds maintain time field length ( #21840 )
2024-12-20 11:14:58 +08:00
wanyaoqi
f22d54b94a
fix(climc): host-show hide long content sys_info nic_info metadata ( #21851 )
2024-12-20 11:11:48 +08:00
屈轩
8813a99a7a
fix(region): host order by commit ( #21854 )
2024-12-20 09:57:35 +08:00
屈轩
5c46e663a3
fix(cloudmon): optimize service metric collect ( #21847 )
2024-12-19 18:48:31 +08:00
Zexi Li
74f4acedb7
fix(host): make telegraf configuration log to debug ( #21842 )
2024-12-19 15:56:14 +08:00
屈轩
c87eb001c9
fix(region): host custom total count ( #21830 )
2024-12-19 11:33:58 +08:00
Jian Qiu
a7a0d57830
fix: enfore mfa ( #21802 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-12-17 19:39:51 +08:00
屈轩
194f9412b1
fix(apigateway): totp_issuer ( #21825 )
2024-12-17 19:37:10 +08:00
屈轩
1b62580dce
fix(scheduledtask): add handler for scheduledtask ( #21821 )
2024-12-17 19:26:10 +08:00
Zexi Li
32bb02f443
fix(host): fix the rtl8139 NIC information is missing ( #21818 )
...
Co-authored-by: 云原生驿站 <33771248+CloudCourierStation@users.noreply.github.com >
2024-12-17 10:36:54 +08:00
屈轩
9d666573c0
fix(region): vendor update ( #21810 )
2024-12-16 16:42:00 +08:00
Zexi Li
ba2b03b2dc
fix(baremetal-agent): adjust redfish http client timeout to 60s ( #21790 )
2024-12-13 10:39:18 +08:00
屈轩
bc63b300cd
fix(region): skip cloudpods vm kernel check ( #21796 )
2024-12-12 19:23:38 +08:00
Zexi Li
3a5a8ba6ca
feat(webconsole): keep_websocket_session option ( #21783 )
2024-12-11 14:26:37 +08:00
屈轩
64652c4656
fix(keystone): avoid remove project metadata when join organization node ( #21763 )
2024-12-07 20:58:45 +08:00
Zexi Li
93c06cf715
feat(monitor): add min and max aggregator ( #21765 )
2024-12-07 20:58:31 +08:00
屈轩
9478982cf0
fix(region): keep cloudpods vm empty password ( #21760 )
2024-12-06 18:10:08 +08:00
屈轩
5bcbecf5bb
fix(region): managed vm migrate info ( #21756 )
2024-12-05 19:33:21 +08:00
屈轩
5191a3b7f2
fix(region): sync managed vm status ( #21752 )
2024-12-05 16:39:04 +08:00
屈轩
b2766640ef
fix(region): managed vm migrate ( #21749 )
2024-12-05 16:18:16 +08:00
屈轩
667e3a4f7c
fix(region): cloudpods vm migrate ( #21746 )
2024-12-05 14:39:18 +08:00
屈轩
b373e74560
fix(region): vendor update ( #21742 )
2024-12-05 12:33:36 +08:00
屈轩
6bcee5cbed
fix(cloudmon): sync cloudproviders ( #21733 )
2024-12-04 09:42:41 +08:00
屈轩
d5469ae918
fix(apigateway): add service settings info ( #21721 )
2024-12-04 09:41:25 +08:00
Zexi Li
2280def838
fix(monitor): clone alert dashboard ( #21727 )
2024-12-03 10:06:04 +08:00
wanyaoqi
2857dcaef2
fix(host,host-deployer): start deployer guest with all of disk ( #21710 )
2024-12-02 14:58:52 +08:00
wanyaoqi
d463a945f7
fix(scheduler,region): fill resource info check guest is in pending usage ( #21675 )
2024-11-27 10:58:04 +08:00
Zexi Li
db83d01929
Automated cherry pick of #21692 : fix: complete monitor metrics ( #21695 )
...
* fix: complete monitor metrics
* fix(monitor): remove container related metrics
---------
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-11-26 14:45:29 +08:00
wanyaoqi
c8510d007e
fix(host): generate ceph conf dup monHosts ( #21687 )
2024-11-26 14:07:24 +08:00
Zexi Li
c4324e25e6
fix(monitor): set default query select and group by for alerting and panel ( #21672 )
2024-11-22 19:20:31 +08:00
Zexi Li
da7e2a010a
feat(monitor): list alertrecords by res_id ( #21667 )
2024-11-22 16:54:37 +08:00
Zexi Li
b4852c75cd
fix(monitor): raw_name of influxdb query ( #21661 )
2024-11-22 15:52:59 +08:00
屈轩
35c0dde143
fix(region): avoid panic ( #21658 )
2024-11-22 14:53:06 +08:00
wanyaoqi
175a354c4f
fix(host): import from libvirt parse live xml ( #21648 )
2024-11-22 14:51:49 +08:00
屈轩
69780561f9
fix(cloudid): vendor update for azure iam ( #21643 )
2024-11-20 20:15:47 +08:00
屈轩
38e82e262a
fix(region): vendor update for azure vm create ( #21638 )
2024-11-20 15:12:29 +08:00
Zexi Li
12fe3fa05c
feat(monitor): support sorting reduced result ( #21635 )
2024-11-20 11:17:07 +08:00
Zexi Li
e96810ef0c
fix(monitor): set default aggregator and group by for alert model ( #21629 )
2024-11-19 14:56:26 +08:00
Zexi Li
36a616d575
fix(monitor): inject ResType ( #21625 )
2024-11-19 14:00:15 +08:00
Zexi Li
ce913c10e0
Automated cherry pick of #21619 : support telegraf linux_sysctl_fs ( #21621 )
...
* support telegraf-sysctl
* feat(monitor): add linux_sysctl_fs measurement
2024-11-18 20:04:26 +08:00
屈轩
cb8ab4b052
fix(region): add lb backend group count and listener count for lb details ( #21609 )
2024-11-17 22:47:16 +08:00
Zexi Li
ef7762d758
fix(region): not sync status when attaching and detaching disk ( #21605 )
2024-11-14 21:28:25 +08:00
屈轩
2883aeb870
fix(region): shareable virtual resource query ( #21598 )
2024-11-14 20:35:17 +08:00
屈轩
e102d90486
fix(region): remove dstack ( #21601 )
2024-11-14 20:32:23 +08:00
Zexi Li
0718d2abe6
fix(monitor): raw_name of group_by ( #21594 )
2024-11-14 18:01:03 +08:00
屈轩
d53802e0bc
fix(region): allow disable default policy ( #21587 )
2024-11-14 14:42:40 +08:00
屈轩
e546326539
fix(region): add actual capacity used usage ( #21574 )
2024-11-12 11:35:06 +08:00
Zexi Li
6c60044bcb
fix(monitor): alert notification details ( #21578 )
2024-11-12 11:28:16 +08:00
屈轩
5ac7edf489
fix(region): filter unused snapshot ( #21563 )
2024-11-12 11:16:18 +08:00
Zexi Li
583d5be908
fix(monitor): add metric content for email template ( #21569 )
2024-11-11 16:09:45 +08:00
Jian Qiu
8f356b65a2
fix: disable default dns domain cloud.onecloud.io ( #21560 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-11-08 10:09:21 +08:00
屈轩
0b79844c12
fix(region): vendor update for gcp disk name length ( #21556 )
2024-11-07 15:00:04 +08:00
Jian Qiu
4c0fa9a6fe
fix: telegraf kakfa ordered configuration ( #21550 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-11-07 09:49:48 +08:00
屈轩
cb409c75b8
fix(glance): image stream worker count ( #21538 )
2024-11-07 09:48:31 +08:00
Zexi Li
0b791de55f
feat(region,climc): server-set-root-disk-matcher ( #21545 )
2024-11-06 18:53:15 +08:00
Zexi Li
259ddccb04
fix(monitor): 修复报警恢复时包含其他资源的问题 ( #21542 )
2024-11-06 18:52:25 +08:00
屈轩
bb1d55b944
fix(notify): show pretty notify error ( #21533 )
2024-11-06 10:05:13 +08:00
wanyaoqi
be112dd6cc
fix(region,host): storage add master host ( #21470 )
2024-11-06 10:03:41 +08:00
屈轩
d45514a104
fix(monitor): add order index for monitor panel ( #21529 )
2024-11-05 17:31:55 +08:00
Zexi Li
e1f524e832
feat(monitor): add system and processes host metrics ( #21524 )
2024-11-04 19:17:26 +08:00
屈轩
6b39ee756f
fix(region): vendor update for disable esxi swap ( #21516 )
2024-11-04 15:09:23 +08:00
Zexi Li
8eaf118118
fix(region): not set PrimaryZone when no dns_domain configured ( #21512 )
2024-11-04 12:40:01 +08:00
Jian Qiu
1d51a4fb21
fix: disk filter by storage host ( #21500 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-10-31 01:49:37 +08:00
Jian Qiu
2ac233d40b
feature: kafka telegraf output options ( #21495 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-10-30 12:32:50 +08:00
屈轩
13c3ea0ee0
fix(region): vendor update ( #21490 )
2024-10-29 18:26:13 +08:00
屈轩
8aa76d2176
fix(region): 避免翻页查询导致公有云实例被误清除 ( #21481 )
2024-10-28 16:41:06 +08:00
屈轩
03e7dcd2b7
fix(region): purge manager quota ( #21478 )
2024-10-28 15:50:43 +08:00
Zexi Li
5033905cd1
feat(webconsole): disable command recording defaultly ( #21468 )
2024-10-25 21:55:37 +08:00
屈轩
e3779e2c81
fix(cloudmon): cloudpods metric sync ( #21461 )
2024-10-25 17:26:20 +08:00
wanyaoqi
547c3b939a
fix(region,host): ceph add enable messenger v2 options ( #21443 )
2024-10-25 10:15:59 +08:00
屈轩
06ca635327
fix(region): vendor update ( #21441 )
2024-10-22 19:57:54 +08:00
Jian Qiu
8da3c5aa02
fix: host bond slave nic should use permaddr as mac ( #21434 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-10-20 14:42:20 +08:00
屈轩
e3a4b93205
fix(region): support cloudpods secrule ops ( #21429 )
2024-10-18 16:48:09 +08:00
屈轩
aa7197c53a
Revert "fix(region): account probe lock" ( #21426 )
...
This reverts commit 7f90d38e5f .
2024-10-18 16:08:07 +08:00
屈轩
87b710ef58
fix(region): add interface field length ( #21420 )
2024-10-18 09:52:17 +08:00
Zexi Li
833dfcc6e2
fix(scheduler): avoid_same_host 策略分数过高导致调度分配不均 ( #21415 )
2024-10-16 10:23:22 +08:00
Zexi Li
ceb5598041
fix(webconsole): ssh randomly exited error ( #21409 )
2024-10-14 14:51:09 +08:00
wanyaoqi
6087afa546
fix(region): fix default network on get desc ( #21395 )
2024-10-14 12:35:51 +08:00
wanyaoqi
80870e97ad
fix(host-deployer): update host-deployer-base to 1.4.9 ( #21402 )
2024-10-12 14:14:00 +08:00
wanyaoqi
a1bf4c7b6c
fix(host-deployer): do not clean spool dir on save image ( #21399 )
2024-10-12 10:08:56 +08:00
wanyaoqi
d82c7bc5a5
fix(host): set ssd disk default scheduler none ( #21358 )
2024-10-12 10:03:17 +08:00
wanyaoqi
a266f4ccc2
fix(host,glance): qemuimg convert optimize, allow write out of order and increase coroutines ( #21373 )
2024-10-12 10:01:23 +08:00
屈轩
123b51a321
fix(region): storage conf update ( #21393 )
2024-10-11 18:05:07 +08:00
屈轩
568b781177
fix(region): gcp security group check ( #21389 )
2024-10-11 17:54:03 +08:00
屈轩
9c894020c9
fix(common): compatible metadata mod find ( #21385 )
2024-10-11 16:40:03 +08:00
Zexi Li
0c9f0314c7
feat(apigateway): add rpc methods of scheduler for apigateway ( #21378 )
2024-10-10 19:07:35 +08:00
wanyaoqi
1641c178b9
fix(region): check disk is deleted on delete snapshot ( #21367 )
2024-10-09 21:48:37 +08:00
wanyaoqi
71fbb8336e
fix(host): reconnect qga on failed exec qga commands ( #21355 )
2024-10-08 10:13:54 +08:00
wanyaoqi
ceff4b7330
fix: fix slice init length ( #21349 )
...
Co-authored-by: cui fliter <imcusg@gmail.com >
2024-10-07 20:09:28 +08:00
wanyaoqi
2c51ca5e1e
fix(region,scheduler): allow req cpu count zero on allocate cpunumapin ( #21345 )
2024-10-03 20:03:23 +08:00
Jian Qiu
4811fcf99e
fix: cloud account filter revisit ( #21341 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-10-01 08:49:15 +08:00
wanyaoqi
ecc41e4b3d
fix(host): refact qga connection ops ( #21335 )
2024-09-29 22:53:11 +08:00
Jian Qiu
7254fa5f11
fix: host report ovs kmod version and ksm status ( #21327 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-28 20:27:07 +08:00
Zexi Li
af85934ac8
fix(region): make parseDeviceInfo error clear ( #21323 )
2024-09-28 18:35:38 +08:00
Jian Qiu
e0ba8db6f1
fix: upgrade sqlite3 to 1.14.19 ( #21317 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-27 07:18:16 +08:00
wanyaoqi
a39eb5813f
Automated cherry pick of #21312 : Automated cherry pick of #20996 : fix(region,host): lvm snapshot delete and create from backup ( #21313 )
...
* fix(region,host): lvm snapshot delete and create from backup
* fix(host): slvm delete snapshot and save images
* fix(host): add option boot vga pci addr
* fix(host): slvm active exclusive mode on convert snapshot
2024-09-27 00:37:18 +08:00
wanyaoqi
6a3ddc131a
fix(host): check qga is init on check qga runing ( #21308 )
2024-09-27 00:35:00 +08:00
屈轩
a4f086fa6e
fix(region): filter cloudproviders by regional network zone ( #21287 )
2024-09-24 18:10:16 +08:00
Jian Qiu
05c704d444
fix: remove metadata server from host ( #21278 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-21 22:52:08 +08:00
屈轩
9afdbb32b5
fix(region): kvm user-data ( #21240 )
2024-09-20 20:41:48 +08:00
屈轩
72a70d5ec2
fix(region): disk metadata with server ( #21254 )
2024-09-19 09:54:53 +08:00
Jian Qiu
a374b4910c
fix: host build image use go 1.21 ( #21265 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-19 03:20:25 +08:00
Jian Qiu
7e39ab816b
fix: update vendor 20240919 3.11 ( #21259 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-18 22:24:06 +08:00
Jian Qiu
3d11283f81
fix: update vendor 3.11 20240917, upgrade go to 1.21 ( #21249 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-18 17:15:01 +08:00
Jian Qiu
79b6fe5113
fix: update vendor 20240916 ( #21245 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-16 19:08:39 +08:00
Jian Qiu
a33aca15de
fix: prevent access from anonymous user ( #21241 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-14 19:36:32 +08:00
wanyaoqi
2e533b3a46
fix(region): guest without cpunumapin don't set params on save schedule result ( #21233 )
2024-09-14 10:11:28 +08:00
Zexi Li
f3cd59d5ca
Automated cherry pick of #21079 : 1、裸金属删除时,GuestUndeployTask会出现无法调用任务完成方法OnGuestUndeployComplete,导致任务卡住的情况 ( #21231 )
...
* 1、裸金属删除时,GuestUndeployTask会出现无法调用任务完成方法OnGuestUndeployComplete,导致任务卡住的情况 2、裸金属删除时,回调用baremetal-agent的sync-config接口不止一次,调用时出现请求参数没有传递server_id情况,导致在OnPXEBoot调用getServer时删除了baremetal的server信息,致使后面的DoEraseDisk方法报错
* 1、裸金属删除时,GuestUndeployTask onInit去掉host不为空时的SetStageComplete函数
---------
Co-authored-by: gj <gj@qq.com >
2024-09-13 14:36:54 +08:00
Zexi Li
c2a0620df2
feat(climc): add public/private command for k8s-container-registry ( #21230 )
2024-09-13 14:34:51 +08:00
屈轩
734aeef43f
fix(cloudmon): vendor update for aws gcp cpu metric ( #21227 )
2024-09-13 11:58:37 +08:00
Zexi Li
7c70b7628c
feat(monitor): filter monitor_resource_alert by ip ( #21219 )
2024-09-12 11:01:06 +08:00
Zexi Li
1fa397b1bb
fix(moniotr): filter dirty resource alerts ( #21214 )
2024-09-12 10:04:50 +08:00
Zexi Li
683b1c252f
fix(climc): monitor-alert-test-run prints result error ( #21210 )
2024-09-11 20:04:25 +08:00
Zexi Li
4dcdc5c419
optimized(monitor): keep 2 precision of reduced value ( #21206 )
2024-09-11 16:36:01 +08:00
屈轩
b6c3d9d168
fix(region): sync remove guest whith network address ( #21201 )
2024-09-10 14:25:45 +08:00
屈轩
9cb2900afc
fix(log): add offline export i18n ( #21195 )
2024-09-10 14:24:55 +08:00
Zexi Li
f14fce685a
feat(apigateway): report k3s environment ( #21198 )
2024-09-10 14:24:16 +08:00
Jian Qiu
88eff2afab
fix: climc server-detach-network --force ( #21192 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-10 09:58:37 +08:00
Zexi Li
5bb7d1176d
optimized(apigateway): use ssh for climc pod cloud shell ( #21180 )
2024-09-09 16:03:02 +08:00
屈轩
19c3c8bc01
fix(cloudid): cloud policy sync ( #21174 )
2024-09-06 11:49:02 +08:00
wanyaoqi
15553290e1
fix(host-deployer): update host-deployer-docker base ( #21176 )
2024-09-06 11:25:39 +08:00
屈轩
5ca05eef84
fix: support apigateway for cloudpods ( #21164 )
2024-09-06 00:38:37 +08:00
Zexi Li
6af40b96c6
fix(monitor): support or filter of query ( #21169 )
2024-09-05 20:10:18 +08:00
屈轩
ead18eae11
fix(region): disk update disk type ( #21161 )
2024-09-04 10:44:38 +08:00
wanyaoqi
9e2108e886
fix(host): rbd save image use /opt/cloud temp dir ( #21152 )
2024-09-04 10:43:17 +08:00
Jian Qiu
ece3641bcb
fix: telegraf config file format error ( #21146 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-03 11:03:10 +08:00
屈轩
8290c3b75d
fix(region): sync worker hashring ( #21128 )
2024-09-02 20:08:18 +08:00
Zexi Li
7ff19556bd
optimize(host): wrap updateOrCreateHost error ( #21140 )
2024-09-02 13:28:22 +08:00
Jian Qiu
d4426ea8dc
fix: update vendor for dameng TEXT_EQUAL ( #21136 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-01 20:19:23 +08:00
wanyaoqi
426038d4b7
fix(region): allow guest create on cannot detect image props ( #21129 )
2024-09-01 20:18:06 +08:00
Jian Qiu
75df132f99
fix: migrate ipv6 routes from physical interface to bridge ( #21131 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-09-01 20:16:36 +08:00
Zexi Li
ecef940442
fix(monitor): delete default group by and mean aggregator ( #21115 )
2024-08-29 10:03:37 +08:00
Zexi Li
7c891bbbb9
fix(climc): host-ssh is not working ( #21113 )
2024-08-27 16:25:31 +08:00
Zexi Li
7f044678d2
fix(monitor): skipCheckSeries when aggregator is sum ( #21105 )
2024-08-27 10:40:59 +08:00
屈轩
62dfa252cd
fix(region): sync aliyun gtm and aws traffic policy address ( #21104 )
2024-08-26 20:55:31 +08:00
Zexi Li
2bd23b1910
fix(monitor): only show MEAN and SUM aggregators ( #21098 )
2024-08-26 17:39:51 +08:00
wanyaoqi
2f849b318d
fix(host): nbd worker count add options ( #21094 )
2024-08-26 17:28:47 +08:00
屈轩
6f5f7e96f7
fix(region): set security group domain id ( #21093 )
2024-08-26 17:27:06 +08:00
Jian Qiu
dbf7b5f67d
fix: extend query with metadata field ( #21085 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-08-23 11:30:22 +08:00
Zexi Li
8c8dfc5557
feat(monitor): result reducer for query result ( #21072 )
2024-08-22 15:43:45 +08:00
Zexi Li
3458d95e83
optimze(baremetal): dhcp prefix hints ( #21073 )
2024-08-22 15:27:18 +08:00
屈轩
f7d0085af8
fix(region): filter eips by associated ( #21067 )
2024-08-21 10:51:07 +08:00
Zexi Li
cb2805f66f
optimize(region,host): add details error message when adding net interface ( #21061 )
2024-08-20 18:38:50 +08:00
Jian Qiu
b8bed4a2cd
fix(host): migrate slave addresses and routes from physical nic to bridge ( #21042 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-08-19 10:19:16 +08:00
Jian Qiu
c247550d89
fix: climc command to public/private dns-zone ( #21055 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-08-19 10:18:20 +08:00
屈轩
bb57530794
fix(cloudmon): 避免cloudmon任务堆积导致大量请求 ( #21049 )
2024-08-19 10:17:22 +08:00
wanyaoqi
e6cb8e047a
fix(region): try recover image cache on guest migrate ( #21026 )
2024-08-16 10:29:38 +08:00
wanyaoqi
c6252cd527
Automated cherry pick of #21039 : fix(region,host,host-deployer): deploy guest ssh port add lock ( #21041 )
...
* fix(host): check nodes count on alloc cpuset
* fix(host-deployer): get ssh port add lock
* feat(region): guest clone add prefer host
2024-08-16 09:56:48 +08:00
Jian Qiu
bd6b05587a
fix: filter islated devices capability info by zone ( #21035 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-08-15 09:37:49 +08:00
Jian Qiu
a781121c3f
fix: support keylike search ( #21031 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-08-15 09:36:13 +08:00
屈轩
bc20d62087
fix(region): sync kvm secgroup status ( #21019 )
2024-08-14 11:37:48 +08:00
Zexi Li
0ac34ecf2d
fix(baremetal): ignore 0.0.0.0 ipmi address when probing ( #21007 )
2024-08-13 17:43:57 +08:00
屈轩
baf914f635
fix(region): custom total count ( #21000 )
2024-08-12 15:48:07 +08:00
屈轩
ffe8a0816e
fix(region): vendor update ( #20994 )
2024-08-12 09:52:30 +08:00
屈轩
b72eab269d
fix(region): auto clean invalid cached images ( #20816 )
2024-08-09 09:42:16 +08:00
wanyaoqi
3c1d703faa
fix(region): validate guestdisk cache/io mode on upadte ( #20983 )
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-08-09 09:40:53 +08:00
wanyaoqi
91dff4fe90
fix(host): clean image cache check local reference ( #20950 )
2024-08-09 09:40:08 +08:00
屈轩
5dca24586c
fix(region): vendor update for lb backend sync ( #20977 )
2024-08-07 18:50:44 +08:00
屈轩
65859262f1
fix(region): send notify when vpc or network created ( #20929 )
2024-08-07 11:55:05 +08:00
屈轩
e02ce67cf6
fix(region): show status info with list api ( #20944 )
2024-08-07 11:54:05 +08:00
wanyaoqi
d79217059b
fix(host-deployer): add cpu mem hotplug udev rules ( #20961 )
2024-08-06 09:07:05 +08:00
wanyaoqi
f18fd960d2
fix(host): too much qga ping logs ( #20955 )
2024-08-05 14:47:15 +08:00
wanyaoqi
6f3f9cb058
fix(region,scheduler): sub pending usage on select cpu numa pin ( #20948 )
...
- reset guest cpu numa pin before start guest
- sub pending usage on select cpu numa pin
- hypervisor pod record pending usage
- add core:threads pair allocate, use same core threads first
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-08-02 10:22:53 +08:00
wanyaoqi
9f8945886c
fix(region): cpu numa pin guest sched start ( #20939 )
2024-07-31 21:36:23 +08:00
wanyaoqi
4690c2307d
feat(region,host,scheduler): scheduler support allocate cpu numa pin ( #20372 )
2024-07-30 19:10:18 +08:00
Zexi Li
72f8cd2617
feat(monitor): multiple alerts of resource ( #20908 )
2024-07-30 16:15:37 +08:00
屈轩
3ce3d803d2
fix(cloudmon): 避免产生大量操作日志 ( #20920 )
2024-07-30 14:42:06 +08:00
屈轩
e85a9ea129
fix(region): vendor update ( #20912 )
2024-07-30 09:33:09 +08:00
Zexi Li
57a9ac2688
fix(monitor): add pps_sent/recv metric for query ( #20913 )
2024-07-29 20:58:41 +08:00
Jian Qiu
2b59cf326c
fix: opsadmin deny host perform login-info ( #20905 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-07-29 13:21:48 +08:00
屈轩
767e68a5a7
fix(keystone): change user mobile field character set to utf8 ( #20899 )
2024-07-27 13:50:04 +08:00
Zexi Li
3b141651a6
fix(mointor): multiple duplicated message ( #20889 )
2024-07-25 15:26:35 +08:00
wanyaoqi
558d310bea
feat(regin,host,host-deployer): qga deploy and fsdriver ( #20813 )
...
- host-deployer add deploy qga support
- host add qga partition fsdriver
- qga set network use fsdriver
- hostpinger sync qga status
2024-07-25 11:49:22 +08:00
屈轩
9fd7fca9b5
fix(cloudid): cloudid resource sync worker ( #20877 )
2024-07-25 11:19:06 +08:00
Zexi Li
62ac71ccc0
feat(webconsole): add secret_level property inside query data ( #20881 )
2024-07-24 17:41:13 +08:00
屈轩
ede5e6af50
fix(region): keypair id typo ( #20874 )
2024-07-24 14:35:40 +08:00
wanyaoqi
aeb14820c6
fix(region,host): slvm disk create use guest host lvm disk create from backup ( #20852 )
...
* fix(region): slvm disk create use guest host
* fix(host): lvm disk create from backup
2024-07-22 15:12:57 +08:00
Zexi Li
0246770fa5
feat(apigateway): report docker-compose-baremetal running environment ( #20865 )
2024-07-22 15:11:43 +08:00
Zexi Li
a79927f825
feat(monitor): add inodes_used_percent metric ( #20847 )
2024-07-20 11:57:11 +08:00
屈轩
c31bca3052
fix(region): host nic info ( #20861 )
2024-07-20 11:56:08 +08:00
Zexi Li
fd5fdb630e
feat(monitor): update influxql-to-metricsql@v0.0.7 to support percentile aggregator ( #20833 )
2024-07-17 22:59:06 +08:00
屈轩
234d8da1cb
fix(region): add storage name for snapshot ( #20829 )
2024-07-17 22:55:49 +08:00
屈轩
7c90f63e8d
fix(region): support baremetal server as lb backend ( #20839 )
2024-07-17 22:54:11 +08:00
屈轩
eb72ec047d
fix(region): vendor update for qcloud lb backend sync ( #20824 )
2024-07-17 14:17:28 +08:00
屈轩
ff88eb87ca
fix(cloudid): distinct field for cloudid resources ( #20820 )
2024-07-17 10:12:58 +08:00
Jian Qiu
6cd471633c
fix: always add static routes for metadata server ( #20808 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-07-17 10:07:07 +08:00
屈轩
5e7ba9a55e
fix(region): check user credential length when exec task ( #20793 )
2024-07-16 11:20:07 +08:00
Zexi Li
969ed95b60
feat(host): add interface meta tags of netio metrics ( #20774 )
2024-07-12 10:18:17 +08:00
Zexi Li
75ae9d50fc
feat(region,baremetal): validate ipmi info ( #20789 )
2024-07-12 10:17:57 +08:00
屈轩
92d9c44271
fix(notify): avoid empty email addr ( #20799 )
2024-07-12 10:10:42 +08:00
屈轩
acd488424b
fix(region): vendor update ( #20802 )
2024-07-12 10:10:07 +08:00
Zexi Li
b0d187bb12
fix(baremetal): some tasks don't implement IServerBaseDeployTask interface ( #20784 )
2024-07-10 16:15:22 +08:00
屈轩
49f635bde6
fix(region): optimized host-list speed ( #20779 )
2024-07-10 16:14:29 +08:00
屈轩
254838b72d
fix(region): optimized guest list speed ( #20760 )
2024-07-10 16:12:39 +08:00
wanyaoqi
ed03ae1e75
fix(host): disk reset with encryption ( #20764 )
2024-07-10 16:11:24 +08:00
屈轩
ea77941b08
fix(region): show pretty cdrom info for server ( #20777 )
2024-07-10 16:10:10 +08:00
屈轩
b72a9a91f4
fix(region): auto sync remove lb public ip ( #20773 )
2024-07-09 17:50:55 +08:00
Zexi Li
9d90fb6a04
fix(scheduler,baremetal): match RAID and PCIE storages in range ( #20767 )
...
The index of PCIE storages is not reindex when range is provided.
2024-07-09 11:11:55 +08:00
屈轩
36a8428f24
fix(region): enable create cloudpods vm with iso image ( #20747 )
2024-07-08 21:32:06 +08:00
屈轩
80edd74260
fix(notify): avoid panic when mobile not set ( #20745 )
2024-07-08 21:31:24 +08:00
Jian Qiu
600a8801f1
fix: turn on ethtool gso by default ( #20754 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-07-08 21:30:24 +08:00
Jian Qiu
1530cab756
fix: server update nic sub ips ( #20758 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-07-08 17:25:31 +08:00
屈轩
8931d292ca
fix(climc): auto enable storage when switch s3 on ( #20728 )
2024-07-07 09:47:01 +08:00
Jian Qiu
a0eeb4b27d
fix: fail to perform host remove netif ( #20738 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-07-07 09:02:39 +08:00
屈轩
75154ca3ea
fix(region): 补充部分翻译 ( #20749 )
2024-07-07 09:01:49 +08:00
wanyaoqi
35fc11cdd5
fix(region,host): lvm snapshot reset and backup ( #20718 )
...
- fix lvm disk reset request hosts wrong, should reset on guest hosts
- add lvm disk snapshot failed handle
- support lvm disk backup
- lvm disk snapshot add encrypt support
2024-07-05 13:49:56 +08:00
屈轩
b6cc2804e1
fix(region): avoid delete lb failed ( #20710 )
2024-07-05 12:38:43 +08:00
屈轩
876f3de5a3
fix(region): 简化清理未使用的安全组 ( #20724 )
2024-07-05 11:03:18 +08:00
Jian Qiu
4d608d59f4
fix: normalize sftp errors ( #20706 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-07-03 21:11:33 +08:00
wanyaoqi
f4c6eadae8
fix(scheduler): optimize get guests by hosts ids ( #20700 )
2024-07-02 00:16:51 +08:00
wanyaoqi
9340c134e5
feat(host): support run guest with qemu 9.0.1 ( #20691 )
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-07-02 00:14:41 +08:00
wanyaoqi
d9bdde8fe0
fix(region,host): migrate converted servers ( #20697 )
2024-07-01 23:55:35 +08:00
屈轩
581a5e9e32
fix(region): security group rule create ( #20696 )
2024-07-01 11:31:43 +08:00
Jian Qiu
9492b740df
feature: support baremetal profile ( #20689 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-30 22:23:17 +08:00
屈轩
6366d35523
fix(region): support eip search ( #20684 )
2024-06-28 15:58:48 +08:00
屈轩
acba8d26ca
fix(log): add rate log type ( #20679 )
2024-06-28 14:49:33 +08:00
wanyaoqi
721a6cf06d
fix(region): convert to kvm overwirte networks ( #20666 )
2024-06-27 20:39:03 +08:00
wanyaoqi
10f71280e2
fix(region): login account allow startwith capital letter ( #20669 )
2024-06-27 20:38:20 +08:00
屈轩
2d16104a1c
fix(region): vendor update for qcloud tencentos server ( #20664 )
2024-06-27 15:39:10 +08:00
wanyaoqi
fb37d022a8
feat(region): add batch convert precheck ( #20658 )
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-06-26 21:20:00 +08:00
wanyaoqi
62659d3dd1
fix(host): delete snapshot on guest deleted ( #20642 )
2024-06-26 21:18:59 +08:00
Zexi Li
6ebbe83f05
fix(climc,webconsole): use OS_AUTH_TOKEN for cloud shell running inside compose environment ( #20648 )
2024-06-26 12:12:05 +08:00
屈轩
149348b87f
fix(region): waf regexset fetch error ( #20647 )
2024-06-26 11:18:18 +08:00
Jian Qiu
9bd48628db
fix: vmware probe host networks ( #20627 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-26 11:00:06 +08:00
屈轩
60c03355d0
fix(region): vendor update for qcloud nat sync ( #20639 )
2024-06-25 15:56:45 +08:00
Zexi Li
a154a61a42
optimize(glance): wrap error of saving image ( #20632 )
2024-06-25 14:21:21 +08:00
wanyaoqi
f40c766991
fix(region): scheduler forecast before convert to kvm ( #20608 )
2024-06-25 11:02:24 +08:00
wanyaoqi
5ea9f040b8
fix(glance): sync service options after vmware detected ( #20605 )
2024-06-25 10:58:05 +08:00
wanyaoqi
11ee966fbc
Fix/deploy reset password support loginaccount ( #20594 )
...
* fix(host): lvm resize add encrypt support
* fix(region): deploy reset password add loginaccount
2024-06-25 10:56:44 +08:00
屈轩
b14879faab
fix(region): vendor update for qcloud nat capability ( #20631 )
2024-06-25 10:53:44 +08:00
屈轩
74492ab199
fix(region): natgateway api upgrade ( #20624 )
2024-06-24 14:59:51 +08:00
Zexi Li
0d8073389d
fix(monitor): add difference tags for each series ( #20620 )
2024-06-22 22:06:09 +08:00
Zexi Li
c4970bb90d
fix(apigateway): compose environment without k8s service ( #20615 )
2024-06-21 16:38:11 +08:00
Zexi Li
794047c67e
feat(dhcprelay): add Dockerfile ( #20614 )
2024-06-21 13:56:27 +08:00
Zexi Li
4e6702e05d
fix(logger): add rejected action i18n translation ( #20599 )
2024-06-20 15:00:59 +08:00
屈轩
5deef95a67
fix(region): auto rename when change resource owner with same name ( #20593 )
2024-06-20 14:04:54 +08:00
Jian Qiu
fa2a2bea18
fix: clone dashboard parameters ( #20589 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-20 07:54:20 +08:00
wanyaoqi
1ded6bccd0
fix(region): allow kvm vmware reuse network address ( #20584 )
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-06-20 06:27:58 +08:00
Zexi Li
7d75080c8e
feat(monitor): add reducer of AlertRecordRule ( #20580 )
2024-06-19 19:19:53 +08:00
Zexi Li
e5c56d1bfd
feat(log): add i18n consts for itsm service ( #20574 )
2024-06-19 15:34:59 +08:00
Jian Qiu
51de4f7059
fix: add predefined log policy ( #20571 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-19 09:33:55 +08:00
Zexi Li
ac8ad4b494
fix(host-deployer): ignore fatal exit when host.conf not exists ( #20559 )
2024-06-18 20:26:59 +08:00
屈轩
47ea1c0ca7
fix(region): qcloud permission ( #20555 )
2024-06-17 14:25:05 +08:00
Jian Qiu
aacaf4e34f
fix: cleanup compute options 20240615 ( #20549 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-17 00:42:14 +08:00
wanyaoqi
9ec1d86a39
fix(region): convert to esxi fill network params ( #20492 )
...
Deploy converted guest after guest created
2024-06-17 00:41:24 +08:00
wanyaoqi
2ff45831c0
fix(region): insert iso sync guest status ( #20535 )
2024-06-16 22:59:45 +08:00
wanyaoqi
7d7ca5bdc4
fix(region,host): isolated device batch sync ( #20536 )
2024-06-14 19:39:45 +08:00
Jian Qiu
3cab927394
fix: enable image cache cleanup by default ( #20532 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-14 18:14:01 +08:00
gouqi11
d0e76569b5
fix(notify): add mobile verify ( #20521 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-06-13 18:59:45 +08:00
gouqi11
81e8a49790
fix(notify): fix mobile validate ( #20511 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-06-11 14:18:07 +08:00
Zexi Li
a0c93e3803
fix(region): container is not started when pod's flavor changed ( #20490 )
2024-06-07 15:04:42 +08:00
wanyaoqi
8591c6c47b
fix(host): parse qga command and args ( #20507 )
2024-06-07 15:03:52 +08:00
wanyaoqi
00ad01ba9b
fix(host-deployer): extend volume before extend filesystem ( #20502 )
2024-06-06 13:37:16 +08:00
Jian Qiu
b134d33338
fix: disk backup details missing components ( #20497 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-06 13:33:43 +08:00
Zexi Li
c94411a57f
feat(region,baremetal,climc): support baremetal root disk matcher ( #20474 )
2024-06-05 00:17:02 +08:00
屈轩
b5e875bcd7
fix(region): update cachedimage limit ( #20473 )
2024-06-04 20:41:55 +08:00
屈轩
e8ce72acb1
fix(baremetal-agent): avoid dead lock ( #20477 )
2024-06-04 18:04:52 +08:00
屈轩
9e5ab20cf4
fix(keystone): show user group info for user ( #20469 )
2024-06-04 15:18:27 +08:00
Jian Qiu
656de3be55
fix: disable webconsole watermark by default ( #20462 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-06-04 00:48:56 +08:00
屈轩
73103a93f3
fix(keystone): avoid sync remove disabled ldap user ( #20438 )
2024-06-04 00:48:15 +08:00
wanyaoqi
4e3feec902
fix(host-deployer): deploy telegraf systemd service type simple ( #20458 )
2024-06-03 19:51:21 +08:00
wanyaoqi
64a7e7c268
fix(host-deployer): split guest dns by comma ( #20450 )
2024-06-03 19:15:44 +08:00
屈轩
73c30aa8ae
fix(keystone): enable user ( #20455 )
2024-06-03 18:07:04 +08:00
屈轩
5b4013114e
fix(region): sync waf ssl and cc list ( #20447 )
2024-06-03 16:01:32 +08:00
Zexi Li
6bef36bcac
feat(monitor): remove precision of float when using max or min function ( #20431 )
2024-06-01 20:41:05 +08:00
屈轩
19e064d887
fix(keystone): avoid panic ( #20435 )
2024-06-01 17:15:16 +08:00
wanyaoqi
d5eed29ac1
fix(region): storagecacheresource panic on FetchCustomizeColumns ( #20427 )
2024-05-31 17:53:51 +08:00
gouqi11
5de92baa9d
fix(notify): message add medium tag ( #20421 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-05-31 10:39:20 +08:00
Jian Qiu
12668a71cb
fix: haproxy check parammeters with default value ( #20417 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-31 10:20:19 +08:00
屈轩
526b3f55d1
fix(region): oracle storage should be emulated ( #20414 )
2024-05-30 20:40:21 +08:00
Jian Qiu
db48b7519b
fix: glance import xz compressed images ( #20409 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-30 19:17:27 +08:00
Zexi Li
03494857be
fix: mv filterclause from pkg to onecloud ( #20405 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-30 16:03:33 +08:00
wanyaoqi
ecad5735c5
fix(region,host): slvm default deactivate on hosts ( #20381 )
2024-05-30 15:03:48 +08:00
gouqi11
bbed855100
fix(notify): change receiver owner ( #20399 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-05-30 11:47:07 +08:00
Zexi Li
55e04f3ba6
feat(climc): feature config ( #20394 )
2024-05-30 10:48:15 +08:00
屈轩
a7b5f47ac7
fix(region): vendor update for web app ip addr sync ( #20393 )
2024-05-29 18:36:54 +08:00
屈轩
8545faf413
fix(region): vendor update ( #20390 )
2024-05-29 17:56:13 +08:00
Zexi Li
8c9357ac99
fix(host): wrap disk probed error ( #20386 )
2024-05-29 17:44:11 +08:00
Zexi Li
ab9f65fed2
fix(monitor): detach alert ( #20374 )
2024-05-28 09:59:55 +08:00
Zexi Li
cb01f13b53
fix(monitor): multiple monitor resource alert ( #20367 )
2024-05-27 15:45:03 +08:00
Zexi Li
913169f7c4
fix(monitor): multiple monitor resource alert ( #20364 )
2024-05-27 15:44:14 +08:00
屈轩
c75c77e405
fix(region): vendor update for sqlchemy click decimal field ( #20363 )
2024-05-27 10:08:01 +08:00
Jian Qiu
6b53d47253
fix: allow update network server_type ( #20355 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-24 20:21:39 +08:00
屈轩
ec11fc7b59
fix(region): distinct fields ( #20358 )
2024-05-24 20:18:57 +08:00
Jian Qiu
fb39f7c3a1
fix: secgroup init rule CIDR should be empty for both ipv4 and ipv6 ( #20346 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-24 10:47:32 +08:00
屈轩
dabf9b4f49
fix(region): account read only ( #20345 )
2024-05-24 10:00:50 +08:00
屈轩
f5cf42a511
fix(region): vendor update for waf info sync ( #20340 )
2024-05-22 20:37:50 +08:00
屈轩
78a18320d1
fix(region): currency rate exchange ( #20335 )
2024-05-21 19:22:04 +08:00
屈轩
f91ceb84b1
fix(region): sync public ip convert eip ( #20327 )
2024-05-21 15:36:41 +08:00
屈轩
b0ff819b22
fix(region): vendor update for aliyun waf ( #20331 )
2024-05-21 15:19:24 +08:00
屈轩
dece32cbe8
fix(region): add currency rate exchange ( #20321 )
2024-05-20 14:51:30 +08:00
屈轩
a21dba1d17
fix(region): vendor update for qcloud waf ( #20310 )
2024-05-17 15:37:02 +08:00
屈轩
24ac759245
fix(region): webapp custom domains ( #20304 )
2024-05-16 16:16:19 +08:00
屈轩
b8b48b4d6e
fix(region): query distinct fields ( #20300 )
2024-05-16 15:24:33 +08:00
屈轩
a9c166d8fd
fix(region): set cloud provider disconnect when sync region error ( #20291 )
2024-05-16 10:01:43 +08:00
Jian Qiu
6546056fbf
fix: hostbackupstorage climc subcmds ( #20286 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-15 18:03:39 +08:00
屈轩
b65abfe76a
fix(region): remove waf cache ( #20283 )
2024-05-15 17:35:14 +08:00
wanyaoqi
cafb619a9f
fix(region,host): slvm misc fix ( #20270 )
2024-05-15 10:45:59 +08:00
屈轩
cdde2bafa1
fix(region): vendor update for web app ( #20269 )
2024-05-14 20:57:39 +08:00
屈轩
7f11f43f0f
fix(region): azure web app ( #20266 )
2024-05-14 19:17:09 +08:00
wanyaoqi
422c3aeaba
fix(region): return origin error on fetch joint item failed ( #20252 )
2024-05-13 17:51:21 +08:00
Jian Qiu
fb5da2667a
fix: ceph stats backward compatible with ceph 12.x ( #20221 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-10 14:55:10 +08:00
Jian Qiu
84b8111341
fix: storagecachedimages details speedup ( #20232 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-10 14:54:00 +08:00
Jian Qiu
c432a59298
fix: cachedimage sync tenant_id ( #20237 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-10 14:52:43 +08:00
屈轩
f7b227274b
fix(region): zstack shared block storage ( #20226 )
2024-05-09 14:25:52 +08:00
Jian Qiu
b13b0725e1
feature: automatically clean obsolete images from host iamge cache ( #20218 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-09 12:11:17 +08:00
gouqi11
641410bf35
fix(region): add modelarts capability ( #20216 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-05-08 19:59:06 +08:00
屈轩
242b87f395
fix(region): vendor update for azure lb sync ( #20213 )
2024-05-08 19:18:00 +08:00
Zexi Li
7b376aa537
feat(host): skip calculating checksum for cached image when format is TGZ ( #20198 )
2024-05-08 12:21:17 +08:00
屈轩
da16872cfd
fix(climc): oraclecloud feature ( #20203 )
2024-05-06 19:17:55 +08:00
Jian Qiu
98367e7f47
fix: set disk status when requesting disk reset ( #20194 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-05-04 09:08:50 +08:00
屈轩
5366526d0e
fix(region): add enable auto sync resource field ( #20189 )
2024-04-30 19:28:11 +08:00
屈轩
547680a6e2
fix(region): remove storagecachedimage ( #20186 )
2024-04-30 15:24:24 +08:00
Jian Qiu
fff5cd1a23
fix(hostman): change userdata.sh mode ( #20183 )
...
Co-authored-by: liaoxiaomeng <liaoxiaomeng@hotmail.com >
2024-04-30 12:44:09 +08:00
wanyaoqi
4765550813
fix(host): ignore disk not found on disk delete handler ( #20175 )
2024-04-30 07:13:34 +08:00
Zexi Li
a981235aed
fix(monitor): multiple metrics query of alert ( #20169 )
2024-04-28 19:05:50 +08:00
屈轩
7996cce2e9
fix(region): update public cloud provider ( #20166 )
2024-04-28 18:28:12 +08:00
Zexi Li
a81ca98f1d
feat(monitor): support multiple metrics alert ( #20156 )
2024-04-28 11:35:40 +08:00
wanyaoqi
b40122f9d3
Fix/host misc fix 0425 ( #20152 )
...
* fix(host): dirty guest dir move to recycle dir
* fix(host-deployer): fix deployer guest ssh port range, use localhost
* fix(host): try bind vfio dirver use addr
2024-04-28 11:18:38 +08:00
Zexi Li
3c977a1f4a
fix(monitor): alert panic ( #20147 )
2024-04-26 12:19:01 +08:00
Zexi Li
e556efa8b0
fix(monitor): filter alerts by monitor_resource_id ( #20135 )
2024-04-25 17:06:52 +08:00
Zexi Li
795ebbd5e9
fix(monitor): query monitor_resource_alert by monitor_resource_id is not working ( #20130 )
2024-04-25 15:48:44 +08:00
屈轩
7ce25f00bd
fix(region): allow update hostname ( #20127 )
2024-04-24 18:40:53 +08:00
屈轩
b49c22b749
fix(region): sync hostname ( #20124 )
2024-04-24 17:33:40 +08:00
屈轩
a21370c96a
fix(mcclient): read me ( #20117 )
2024-04-24 12:22:08 +08:00
屈轩
3ffea07d31
fix(region):auto create project ( #20104 )
2024-04-22 19:26:57 +08:00
Jian Qiu
9b13891c13
fix: wrong private static route format ( #20089 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-04-22 14:52:24 +08:00
Jian Qiu
dd4095630d
fix: guest stop revisit ( #20093 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-04-22 14:51:40 +08:00
屈轩
aa2c39202a
fix(region): show more error info when sync nic error ( #20099 )
2024-04-22 14:37:32 +08:00
屈轩
ecba5d4546
fix(region): show ip out of range details error ( #20083 )
2024-04-19 18:30:26 +08:00
wanyaoqi
3eb713bffe
fix(regin,host): delete snapshots after stream complete ( #20084 )
2024-04-19 18:27:09 +08:00
Jian Qiu
386fadb407
fix: backup storage access containd by hosts ( #20063 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-04-19 07:20:33 +08:00
wanyaoqi
7674b9fafa
fix(host): resize lvm disk ( #20046 )
2024-04-19 07:18:25 +08:00
屈轩
698cc2f99a
fix(region): account disconnect ( #20078 )
2024-04-18 20:23:54 +08:00
屈轩
acfa5e3634
fix(cloudid): add volcengine sp metadata ( #20075 )
2024-04-18 18:02:50 +08:00
屈轩
b08bb79f0b
fix(region): sync bucket status ( #20071 )
2024-04-18 15:49:59 +08:00
屈轩
081886c9c6
fix(region): avoid skip zone purge ( #20066 )
2024-04-18 15:39:25 +08:00
屈轩
733a684671
fix(region): vendor update for code generate ( #20059 )
2024-04-18 13:22:44 +08:00
屈轩
6336c5858f
fix(cloudmon): oracle metric collect ( #20056 )
2024-04-18 11:33:02 +08:00
屈轩
c0822a43d6
fix(region): vendor update for oracle monitor ( #20044 )
2024-04-17 18:30:50 +08:00
屈轩
7a2c092548
fix(cloudmon): vendor update for support oracle metric ( #20039 )
2024-04-17 15:25:57 +08:00
Zexi Li
d8fe2ce5dd
Merge pull request #20013 from wanyaoqi/fix/custom-pci-device
...
fix(region,host): custom device model add auto detect option
2024-04-17 10:27:36 +08:00
Zexi Li
6415beac2b
Merge pull request #19994 from wanyaoqi/automated-cherry-pick-of-#19993-upstream-release-3.11
...
Automated cherry pick of #19993 : fix(host): sriov bond
2024-04-17 10:26:51 +08:00
屈轩
a14b932208
fix(region): remove dirty code ( #20034 )
2024-04-17 10:11:28 +08:00
Zexi Li
b0351bc879
Merge pull request #19999 from wanyaoqi/fix/new-pci-device
...
feat(host): NewPciDevice add executor
2024-04-16 18:25:04 +08:00
Zexi Li
bb876962f6
Merge pull request #19992 from wanyaoqi/automated-cherry-pick-of-#19991-upstream-release-3.11
...
Automated cherry pick of #19991 : feat(region,host): add disk migrate support
2024-04-16 18:22:37 +08:00
Zexi Li
5a580cbe54
Merge pull request #19998 from swordqiu/automated-cherry-pick-of-#19996-upstream-release-3.11
...
Automated cherry pick of #19996 : fix: disk post create not inherit upper class
2024-04-16 18:20:43 +08:00
Zexi Li
86d4b45ea6
Merge pull request #20025 from wanyaoqi/fix/gpu-probe
...
fix(host): fix gpu device vendor check strategy
2024-04-16 18:18:00 +08:00
屈轩
3c5f09fdab
fix(region): support delete huawei prepaid resource ( #20031 )
2024-04-16 18:08:15 +08:00
屈轩
53ae0e2f02
fix(region): avoid skip region purge ( #20022 )
2024-04-16 16:44:16 +08:00
屈轩
7be62a8e88
fix(region): skip not implement error ( #20019 )
2024-04-16 16:43:30 +08:00
Zexi Li
6c4532e581
Merge pull request #20008 from swordqiu/automated-cherry-pick-of-#20006-upstream-release-3.11
...
Automated cherry pick of #20006 : fix: fail to create encrypted nfs disk
2024-04-16 16:00:43 +08:00
Zexi Li
5c42f663eb
Merge pull request #19989 from swordqiu/automated-cherry-pick-of-#19987-upstream-release-3.11
...
Automated cherry pick of #19987 : fix: userdata not executable due to umask
2024-04-16 15:57:26 +08:00
wanyaoqi
32e1d6cdd1
fix(host): fix gpu device vendor check strategy
...
Check gpu device vendor id on class code is DISPLAY.
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-04-16 15:50:55 +08:00
wanyaoqi
fec1c01cec
fix(region,host): custom device model add auto detect option
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-04-16 12:31:16 +08:00
Qiu Jian
725d952f83
fix: fail to create encrypted nfs disk
2024-04-16 00:18:39 +08:00
wanyaoqi
c71e819280
feat(region,host): add disk migrate support
2024-04-15 22:24:01 +08:00
Qiu Jian
bedb0c0a6a
fix: disk post create not inherit upper class
2024-04-15 21:47:04 +08:00
wanyaoqi
365de1be8b
feat(host): NewPciDevice add executor
2024-04-15 21:45:04 +08:00
wanyaoqi
0ebd7370d1
fix(host): init from existing guest load cpuset
2024-04-15 18:54:44 +08:00
wanyaoqi
f7dc234099
fix(host): detect sriov bond nics
2024-04-15 18:54:43 +08:00
Qiu Jian
2338fd1e34
fix: userdata not executable due to umask
2024-04-15 17:23:50 +08:00
屈轩
66b58af9bc
fix(region): simplfy cached-image-list filter ( #19986 )
2024-04-15 15:50:16 +08:00
屈轩
027f5749fa
fix(region): allow not idle account sync ( #19982 )
2024-04-15 14:10:39 +08:00
Jian Qiu
b7ddcc7ba4
fix: bond interface missing default gateway ( #19954 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-04-15 10:37:23 +08:00
屈轩
42428ecd60
fix(image): set image upload download timeout 4 hour ( #19978 )
2024-04-15 10:13:57 +08:00
屈轩
72ece6d698
fix(region): sync ksyun tag ( #19974 )
2024-04-14 13:02:11 +08:00
屈轩
2258c9e15f
fix(region): vendor update for vpc not found error ( #19970 )
2024-04-12 20:52:33 +08:00
屈轩
d5ac3657e8
fix(region): vendor update 0412 ( #19963 )
2024-04-12 18:26:17 +08:00
屈轩
bb3f183872
fix(region): support ksyun tag sync ( #19957 )
2024-04-12 12:05:29 +08:00
Jian Qiu
75fd08aef0
fix: netplan empty bond address ( #19940 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-04-11 18:10:40 +08:00
屈轩
9963ef5684
fix(region): vendor update ( #19948 )
2024-04-11 15:06:53 +08:00
屈轩
eaed04d940
fix(region): avoid purge zone ( #19938 )
2024-04-11 13:58:00 +08:00
Zexi Li
aeab217763
Merge pull request #19934 from zexi/automated-cherry-pick-of-#19932-upstream-release-3.11
...
Automated cherry pick of #19932 : feat(region,climc): support disk-rebuild
2024-04-11 12:09:04 +08:00
Zexi Li
141b03667b
Merge pull request #19898 from swordqiu/hotfix/qj-unique-host-nic-index
...
fix: host nic index should be unique
2024-04-11 11:37:37 +08:00
Zexi Li
9e5b1a681c
Merge pull request #19929 from swordqiu/automated-cherry-pick-of-#19928-upstream-release-3.11
...
Automated cherry pick of #19928 : fix: disable disk serial for esxi vm on release/3.10
2024-04-11 11:35:06 +08:00
Zexi Li
5664981943
feat(region,climc): support disk-rebuild
2024-04-11 11:17:06 +08:00
Qiu Jian
121e048a26
fix: disable disk serial for esxi vm on release/3.10
2024-04-11 01:18:31 +08:00
屈轩
c3e5304a6b
fix(region): avoid purge regions ( #19924 )
2024-04-10 17:06:15 +08:00
Qiu Jian
8159a6d86c
fix: host nic index should be unique
2024-04-10 01:33:02 +08:00
gouqi11
2de0bf27f5
update vendor ( #19917 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-04-09 19:47:34 +08:00
屈轩
9e9a45d986
fix(region): clean external cachedimage ( #19912 )
2024-04-09 17:26:17 +08:00
gouqi11
cc475e663c
update vendor:ksyun ecs ( #19905 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-04-09 11:51:53 +08:00
屈轩
832c5ada8d
fix(region): show local task stack info ( #19902 )
2024-04-09 11:51:03 +08:00
屈轩
a6f1402b94
fix(monitor): remove useless code ( #19897 )
2024-04-08 11:54:08 +08:00
wanyaoqi
cbada729be
feat: lvm snapshots ( #19844 )
...
* fix(region,host): remove snapshot fake delete state
* feat(region,host): lvm snapshot support
2024-04-08 02:55:31 +08:00
Jian Qiu
a764ddedfa
fix: fail to detect lv by megacli64 and storecli ( #19880 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-04-08 00:26:55 +08:00
屈轩
f935d2a62d
fix(region): remove qcloud sync cache ( #19891 )
2024-04-07 16:45:10 +08:00
屈轩
4dd874e0be
fix(glance): image upload timeout ( #19889 )
2024-04-07 15:29:46 +08:00
屈轩
beeae3c163
fix(region): return error for query guest network ( #19886 )
2024-04-07 14:16:23 +08:00
屈轩
9eae3cf564
fix(region): add cloud account sync batch size options ( #19877 )
2024-04-03 14:39:04 +08:00
屈轩
f2f78a10ed
fix(region): prepare regions by prefix ( #19873 )
2024-04-03 10:15:15 +08:00
屈轩
164ea30840
fix(region): total count rds by zone id ( #19867 )
2024-04-02 20:32:57 +08:00
屈轩
036aca1569
fix(region): vendor update for region sync ( #19864 )
2024-04-02 20:16:30 +08:00
屈轩
0b82fcf60d
fix(cloudid): vendor update for ksyun iam ( #19862 )
2024-04-02 20:03:47 +08:00
gouqi11
9ec9f3e14f
fix(notify): clean notificationGroup after send ( #19859 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-04-02 18:40:17 +08:00
屈轩
4f43e6d121
fix(cloudid): vendor update form volcengine iam ( #19856 )
2024-04-02 14:39:18 +08:00
Zexi Li
f57e69e6b3
Merge pull request #19851 from swordqiu/automated-cherry-pick-of-#19850-upstream-release-3.11
...
Automated cherry pick of #19850 : fix: idp list query filter by sso_domain
2024-04-02 10:36:04 +08:00
Qiu Jian
0f0fd934e7
fix: idp list query filter by sso_domain
2024-04-02 01:30:25 +08:00
Jian Qiu
b065b2b77d
fix: trigger project sync by informer ( #19837 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-04-02 00:23:52 +08:00
屈轩
e27dbf1266
fix(cloudid): vendor update ( #19847 )
2024-04-01 11:39:28 +08:00
屈轩
501f0c9393
fix(cloudid): model reflection ( #19845 )
2024-04-01 11:09:02 +08:00
Zexi Li
7b78f77b99
Merge pull request #19838 from wanyaoqi/fix/mkfs-ext4-resizefs
...
fix(host-deployer): add ext4 usage type options
2024-04-01 10:14:22 +08:00
屈轩
a220222d17
fix(region): billing resource check ( #19841 )
2024-04-01 10:06:19 +08:00
wanyaoqi
8508b8551a
fix(host-deployer): add ext4 usage type options
...
resize fs not required find rootfs.
format ext4 partitions select usage type by part size.
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-03-31 12:33:20 +08:00
Zexi Li
895e46256b
Merge pull request #19831 from wanyaoqi/automated-cherry-pick-of-#19830-upstream-release-3.11
...
Automated cherry pick of #19830 : fix(host-deployer): deploy guest arm kernel path fix
2024-03-29 16:15:09 +08:00
wanyaoqi
7d0bcfbea2
fix(host-deployer): deploy guest arm kernel path fix
2024-03-29 16:11:15 +08:00
屈轩
ade927c9dd
fix(region): vendor update ( #19827 )
2024-03-29 10:38:01 +08:00
屈轩
ffac25beb0
fix(region): cloudpods region sync ( #19821 )
2024-03-28 15:33:42 +08:00
Zexi Li
2e78621401
Merge pull request #19810 from wanyaoqi/automated-cherry-pick-of-#19803-upstream-release-3.11
...
Automated cherry pick of #19803 : fix(host): delete lvm disk active first
2024-03-27 20:23:24 +08:00
屈轩
efbcaf5532
fix(region): avoid panic ( #19816 )
2024-03-27 15:05:18 +08:00
wanyaoqi
d440a57f6e
fix(host): resize slvm disk
2024-03-26 22:50:46 +08:00
wanyaoqi
5841593a55
fix(host): delete lvm disk active first
2024-03-26 22:50:46 +08:00
Jian Qiu
e918d6d0f1
fix: host-type-count sql error ( #19802 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-26 18:57:40 +08:00
屈轩
6f73da08b7
fix(climc): remove useless code ( #19799 )
2024-03-26 17:04:09 +08:00
gouqi11
9e10ad4e21
feat(excelutils): support read file data ( #19795 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-03-26 14:53:56 +08:00
Jian Qiu
d690f923ed
fix: create lb listener rules fail due to domain not found ( #19786 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-26 09:49:56 +08:00
wanyaoqi
87e5add5e8
fix(ansibleserver): update file repo ( #19773 )
2024-03-26 09:48:27 +08:00
Jian Qiu
ff1ea0f7ef
fix: server skus ignore seting SetModelManager ( #19778 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-26 09:47:42 +08:00
Jian Qiu
719fd389e3
fix: fail to parse ipv6 addr of fc00::1:1004:ffff:ffff:ffff:ffff ( #19782 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-26 09:46:35 +08:00
屈轩
85dac7d7cd
fix(region): filter cloudprovider by zone ( #19789 )
2024-03-25 19:23:19 +08:00
屈轩
85416d828d
fix(vpcagent): signal killed ( #19762 )
2024-03-22 09:37:29 +08:00
屈轩
059d3273b2
fix(vpcagent): prevent the security group deletion rule from taking effect ( #19759 )
2024-03-21 20:39:18 +08:00
屈轩
bf417ce9f0
fix(notify): simplify receiver api ( #19765 )
2024-03-21 20:07:39 +08:00
屈轩
def5478dda
fix(region): allow delete aliyun prepaid vm ( #19768 )
2024-03-21 20:07:17 +08:00
Zexi Li
0bc7f8f80a
Merge pull request #19730 from wanyaoqi/fix/lvm-storage-cache
...
fix(region,host): lvm storage misc fix
2024-03-21 19:53:21 +08:00
屈轩
8b7ab5cff2
fix(region): skip set lost name when purge deleted vm ( #19753 )
2024-03-20 18:20:09 +08:00
Zexi Li
8685f3b17b
Merge pull request #19750 from zexi/extra-hook
...
feat(cloudcommon): support extra hook for db model
2024-03-20 15:04:23 +08:00
Zexi Li
a976931ea5
feat(cloudcommon): support extra hook for db model
2024-03-20 11:43:35 +08:00
屈轩
68eeb1ba12
fix(region): esxi vm desc sync ( #19747 )
2024-03-19 15:49:34 +08:00
屈轩
3eed5b59c4
fix(region): support create vmware vm with desc ( #19740 )
2024-03-18 09:47:18 +08:00
屈轩
10e7e8cf22
fix(region): sync max priority project tag ( #19737 )
2024-03-15 19:10:34 +08:00
wanyaoqi
68c47b4ee9
fix(region,host): lvm storage misc fix
...
- add some lvm storage create check
- fix slvm storage image cache not correct
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-03-14 22:12:20 +08:00
wanyaoqi
ce876e9ab2
fix(region): check normal type nic is null ( #19728 )
2024-03-14 17:57:27 +08:00
屈轩
dd580c9af1
fix(esxi-agent): create vmware vm with suitable version ( #19726 )
2024-03-14 15:54:17 +08:00
Zexi Li
87c8461960
Merge pull request #19724 from ioito/automated-cherry-pick-of-#19723-upstream-release-3.11
...
Automated cherry pick of #19723 : fix(region): avoid duplicate zone name
2024-03-13 20:12:09 +08:00
Zexi Li
bc478687a9
Merge pull request #19711 from wanyaoqi/fix/misc-fix-240312
...
fix(host): gpu probe check vendor is amd or nvidia
2024-03-13 20:05:53 +08:00
Zexi Li
84174f58f0
Merge pull request #19715 from swordqiu/automated-cherry-pick-of-#19714-upstream-release-3.11
...
Automated cherry pick of #19714 : fix: tag filter with no value revisit
2024-03-13 20:04:55 +08:00
屈轩
e4ab58f7eb
fix(region): filter disks by guest status ( #19721 )
2024-03-13 19:10:54 +08:00
Qu Xuan
41db55345b
fix(region): avoid duplicate zone name
2024-03-13 19:08:14 +08:00
屈轩
ebf5e3cf90
fix(region): avoid panic when network is nil ( #19718 )
2024-03-13 11:58:50 +08:00
Qiu Jian
9c303a1795
fix: tag filter with no value revisit
2024-03-12 21:45:28 +08:00
wanyaoqi
70fb9a76b2
fix(host): gpu probe check vendor is amd or nvidia
2024-03-12 19:36:46 +08:00
屈轩
25a2f3a3ed
fix(webconsole): sftp download utf8 filename ( #19709 )
2024-03-12 18:29:06 +08:00
Jian Qiu
299846783d
fix: host-deploy options struct consistent with host options ( #19695 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-12 13:35:40 +08:00
Zexi Li
5cf7946b33
Merge pull request #19689 from swordqiu/automated-cherry-pick-of-#19688-upstream-release-3.11
...
Automated cherry pick of #19688 : fix: make authManager a singleton
2024-03-12 10:46:44 +08:00
屈轩
153ea3a1d2
fix(region): ipv6 cidr sync for network ( #19703 )
2024-03-11 17:52:28 +08:00
屈轩
47baaf6297
fix(region): avoid update network dns panic ( #19698 )
2024-03-11 10:57:49 +08:00
屈轩
69202744a2
fix(webconsole): show link file info ( #19692 )
2024-03-11 09:43:48 +08:00
Qiu Jian
b4039038a4
fix: make authManager a singleton
2024-03-10 10:09:14 +08:00
Jian Qiu
54925e8de4
fix: webconsole command log empty opstime ( #19683 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-10 07:24:34 +08:00
Jian Qiu
31b3432189
fix: vpcagent always do full sync, disable incremental sync ( #19629 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-10 07:23:25 +08:00
wanyaoqi
5bc8219e56
fix(host): qga set network flush ipv4 address ( #19671 )
2024-03-10 07:22:17 +08:00
Jian Qiu
69ec88a05f
fix: network address details compatible with dameng ( #19687 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-10 07:21:45 +08:00
Jian Qiu
be449a610a
fix: support db checksum algorithm of SHA256 ( #19681 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-09 14:57:47 +08:00
屈轩
d4d8028dea
fix(region): vendor update for qcloud nat sync ( #19677 )
2024-03-08 18:13:43 +08:00
屈轩
0504084f25
fix(webconsole): sftp return file mode info ( #19675 )
2024-03-08 13:43:45 +08:00
Zexi Li
9d0380c5de
Merge pull request #19669 from swordqiu/automated-cherry-pick-of-#19668-upstream-release-3.11
...
Automated cherry pick of #19668 : fix: always add static routes for default nic master
2024-03-07 10:05:50 +08:00
Qiu Jian
6b26413077
fix: always add static routes for default nic
2024-03-06 19:54:21 +08:00
屈轩
7156c24d68
fix(scheduler): skip network exit check ( #19665 )
2024-03-06 19:10:43 +08:00
屈轩
70f666d262
fix(region): vendor update for sync azure network cidr ( #19662 )
2024-03-06 18:08:23 +08:00
屈轩
87c001b0b8
fix(region): exit no longer affects managed network ( #19659 )
2024-03-06 16:59:57 +08:00
屈轩
3b8acbc2e2
fix(webconsole): file mode ( #19657 )
2024-03-06 13:21:20 +08:00
Jian Qiu
c180066c95
fix: network ip match recode to fix dameng INET_ATON support ( #19655 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-06 03:08:10 +08:00
Jian Qiu
73c3683529
fix: donot use insertOrUpdate for create joint resources ( #19651 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-06 02:23:54 +08:00
wanyaoqi
0fbd11fa07
fix(host-deployer): support deploy encrypted disk ( #19639 )
2024-03-06 02:22:39 +08:00
wanyaoqi
8d5c516540
fix(host): backup guest dirty shutdown ( #19621 )
...
backup guest dirty shutdown master request sync status,
slave request dirty start.
2024-03-06 02:22:09 +08:00
wanyaoqi
7c6616d1dc
feat(region,host): support shared driver by lvmlockd ( #19611 )
2024-03-06 02:10:23 +08:00
屈轩
d3017e5ca3
fix(region): dissociate eip when vm deleted ( #19647 )
2024-03-05 18:35:51 +08:00
屈轩
89307a4ae9
fix(region): sync account project ( #19644 )
2024-03-05 17:18:20 +08:00
屈轩
2818e47d90
fix(region): compatible with v3.9 vm cdrom ( #19637 )
2024-03-05 15:56:56 +08:00
屈轩
55d966bca9
fix(cloudmon): support ctyun vm metric ( #19635 )
2024-03-05 11:58:50 +08:00
Zexi Li
ed2dd1f548
Merge pull request #19632 from swordqiu/automated-cherry-pick-of-#19631-upstream-release-3.11
...
Automated cherry pick of #19631 : fix: tokenCache newInformer fail
2024-03-05 10:29:50 +08:00
Qiu Jian
23ab9b6cd6
fix: tokenCache newInformer fail
2024-03-05 00:30:19 +08:00
屈轩
7cf03d7a7e
fix(region): vendor update for azure associate type ( #19625 )
2024-03-04 20:09:18 +08:00
Jian Qiu
6e820b1945
Automated cherry pick of #19609 : Hotfix/qj organization node label contains separator2 ( #19610 )
...
* fix: organization node label contains separator, round 2
* fix: hidden parent org nodes
---------
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-04 18:14:39 +08:00
屈轩
7467c6de6a
fix(region): 未开启三级权限允许云账号更改项目 ( #19613 )
2024-03-04 13:14:22 +08:00
Jian Qiu
e79a81eb0a
update vendor 20240303 ( #19607 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-03-03 11:47:02 +08:00
gouqi11
d522db3f8c
fix(influxdb): support set timeout ( #19600 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-03-03 10:47:39 +08:00
屈轩
5ab009f7e9
fix(region): raw query with delete-all options ( #19604 )
2024-03-01 19:36:36 +08:00
屈轩
a35243f26c
fix(region): avoid sync huawei lb backend panic ( #19590 )
2024-03-01 10:41:34 +08:00
屈轩
ed67e20b04
fix(region): ctyun api page size must le 50 ( #19585 )
2024-02-29 18:20:41 +08:00
屈轩
147af900c6
fix(region): add secgroup filter for rds and redis ( #19583 )
2024-02-29 17:02:02 +08:00
Jian Qiu
cf4e1fd15d
fix: handle label separator in organization tag value ( #19574 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-29 16:37:53 +08:00
Jian Qiu
45c399066f
feature: dameng database support ( #19571 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-29 16:37:30 +08:00
屈轩
cb77c0e21f
fix(region): skip sync apsara expired time ( #19580 )
2024-02-29 16:08:14 +08:00
屈轩
b8db3e5f09
fix(keystone): domain-list with delete-all options ( #19577 )
2024-02-29 16:06:15 +08:00
屈轩
6581ab2202
fix(region): support huawei public nat ( #19575 )
2024-02-29 14:44:43 +08:00
屈轩
2fa97cd09a
fix(notify): add capability for notify config ( #19569 )
2024-02-28 17:51:37 +08:00
屈轩
cd47b45f57
fix(region): remove useless code ( #19567 )
2024-02-28 16:49:48 +08:00
屈轩
8888107741
fix(keystone): optimized domain-list query ( #19556 )
2024-02-28 14:45:24 +08:00
wanyaoqi
6282060ab2
Fix/create from iso set os distro ( #19547 )
...
* fix(region): iso guest copy image props to metadata
* fix(region): always run host ping detect task
2024-02-28 14:16:28 +08:00
wanyaoqi
103ec2220e
Fix/guest image live migrate ( #19558 )
...
* fix(host): slvm storage active on init
* fix(region): guest live migrate cache all of guestimage caches
2024-02-28 11:31:38 +08:00
Zexi Li
926b389f4e
Merge pull request #19563 from zexi/automated-cherry-pick-of-#19561-upstream-release-3.11
...
Automated cherry pick of #19561 : fix(scheduler): unsued key
2024-02-28 11:00:15 +08:00
Zexi Li
7cbff93e0d
fix(scheduler): unsued key
2024-02-28 10:26:50 +08:00
gouqi11
52b08e6e3e
fix(monitor): add target for suggestRuleListInput ( #19554 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-02-26 20:18:50 +08:00
wanyaoqi
629c9982ab
fix(region): update rescuing status to rescue ( #19543 )
2024-02-24 07:53:56 +08:00
wanyaoqi
e62b5c1fc2
feat(host): disable guest hpet timer by default ( #19535 )
...
The HPET was turned off by default purely because of issues with time
drifting on Windows guests. (See nova commit ba3fd16605.)
2024-02-24 07:53:28 +08:00
wanyaoqi
4513e4beb6
fix(host): load guest desc hpet and video1 dev ( #19531 )
2024-02-24 07:51:58 +08:00
Jian Qiu
9228a973a8
fix: support OpenCloudOS, OpenKylin, Alma, UOSDesktop ( #19528 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-24 07:50:26 +08:00
屈轩
abe226008a
fix(region): support secgroup ipv6 ( #19542 )
2024-02-23 16:57:07 +08:00
屈轩
341fe8d5a5
fix(keystone): support filter project by multi admin user ( #19540 )
2024-02-23 15:25:04 +08:00
屈轩
3a357b343d
fix(keystone): support unset project admin user ( #19538 )
2024-02-23 15:08:20 +08:00
gouqi11
6186e73608
fix(util): fix excelutils set emptu cell ( #19525 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-02-22 19:55:30 +08:00
屈轩
5cab69547a
fix(region): sync lb secgroup ( #19523 )
2024-02-22 18:14:09 +08:00
屈轩
bac856527d
fix(region): sync by external project with enable project sync ( #19520 )
2024-02-22 18:13:40 +08:00
屈轩
98a8d28e09
fix(region): refactor lb acl and cert ( #19518 )
2024-02-21 19:55:04 +08:00
屈轩
1c94dac7b6
fix(region): sync empty security groups ( #19516 )
2024-02-21 16:27:03 +08:00
屈轩
e2149d01b6
fix(region): vendor update for qcloud nat status ( #19513 )
2024-02-20 16:00:07 +08:00
屈轩
c51150e756
fix(region): sync regional secgrouop ( #19511 )
2024-02-20 15:43:47 +08:00
Jian Qiu
ca7621cfb0
fix: filter organization nodes by policy tags ( #19507 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-20 09:53:19 +08:00
Jian Qiu
8321100c51
fix: policy update description panic ( #19509 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-20 09:28:38 +08:00
wanyaoqi
af3daeafb1
fix(host): script start guest donot force restart on monitor timeout ( #19504 )
2024-02-19 20:52:27 +08:00
屈轩
b240047cce
fix(cloudproxy): cloudproxy service auth first ( #19501 )
2024-02-19 12:08:28 +08:00
wanyaoqi
092eaf6870
feat(region,host): guest numa allocate ( #19496 )
2024-02-18 19:35:13 +08:00
Jian Qiu
85efe57b22
fix: create params with require_ipv6 ( #19492 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-18 10:35:14 +08:00
屈轩
797f2cc6d9
fix(region): vendor update for openstack https support ( #19494 )
2024-02-18 10:22:39 +08:00
Jian Qiu
dffd27e2bc
fix: invalid token request too frequent ( #19488 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-17 19:00:12 +08:00
Jian Qiu
579cba8b6f
fix: organization sync panic on nil pointer of weight ( #19486 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-12 21:08:47 +08:00
Jian Qiu
bbf5c4afb3
fix: project tag tree sql revise ( #19485 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-11 10:47:30 +08:00
Jian Qiu
d0304058b2
fix: IModelManager add NewQuery to initialize query with params ( #19482 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-11 00:26:16 +08:00
Jian Qiu
97fc5258df
fix: sync error ( #19483 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-10 18:00:28 +08:00
Jian Qiu
0f2e11591f
fix: avaialble address6 api timeout ( #19480 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-10 16:30:29 +08:00
wanyaoqi
5bef00a3a8
fix(region,host): rescue mode update initramfs, vnc login no passwd ( #19477 )
2024-02-09 09:23:00 +08:00
wanyaoqi
38834f3b1f
fix(host-deployer): elfherader fd leak ( #19475 )
2024-02-08 14:11:24 +08:00
屈轩
52404a26d9
fix(region): avoid panic when change-owner missing domain_id ( #19472 )
2024-02-08 10:51:26 +08:00
屈轩
31bade24e7
fix(region): add read only filter for account and provider ( #19469 )
2024-02-07 15:33:03 +08:00
Jian Qiu
f6a9b77698
fix: project tag value tree can return sum of any field ( #19465 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-07 11:52:03 +08:00
屈轩
85b6ad8a34
fix(region): trim tag space ( #19467 )
2024-02-07 11:04:29 +08:00
wanyaoqi
2069906d7b
fix(host-deployer): xfs unlock panic ( #19458 )
2024-02-06 00:32:29 +08:00
Jian Qiu
eef9e48e02
feature: allow manager to preapre query context ( #19455 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-06 00:01:26 +08:00
屈轩
1bd5f73365
fix(region): qcloud disks delete when vm deleted ( #19453 )
2024-02-05 17:54:51 +08:00
屈轩
70c280af77
fix(climc): support set bill report for azure account ( #19450 )
2024-02-05 15:14:17 +08:00
屈轩
08f92a8d89
fix(region): cloudpods ipv6 sync ( #19445 )
2024-02-05 11:24:10 +08:00
屈轩
0c4b30335b
fix(region): cloudpods deploy api ( #19447 )
2024-02-05 11:23:45 +08:00
Jian Qiu
f3f9fa9886
fix: tenant cache sync deleted projects ( #19441 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-05 08:45:10 +08:00
屈轩
bf320a5b32
fix(region): support set network tags ( #19439 )
2024-02-04 18:05:15 +08:00
屈轩
c5dcc6fa1d
fix(region): avoid informer panic ( #19431 )
2024-02-04 16:29:00 +08:00
屈轩
317b8b7a3b
fix(region): avoid filesystem sync error ( #19436 )
2024-02-04 15:19:15 +08:00
屈轩
1456f31d45
fix(region): auto set provider project id when change account project info ( #19433 )
2024-02-04 11:49:59 +08:00
gouqi11
b2de0282f6
fix(scheduledtask): fix deletedResource task ( #19428 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-02-04 10:42:53 +08:00
屈轩
9efb34f7c7
fix(webconsole): sort file list ( #19409 )
2024-02-03 23:28:40 +08:00
Jian Qiu
b03650d97f
fix: fail to reset policy org_node_id to empty ( #19426 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-03 23:19:53 +08:00
屈轩
31f6a4026d
fix(region): auto create project by project mapping ( #19407 )
2024-02-02 17:37:00 +08:00
屈轩
74932360b5
fix(region): ipv6 free ip ( #19418 )
2024-02-02 17:15:18 +08:00
屈轩
629ca22509
fix(region): support public ipv6 addr sync ( #19420 )
2024-02-02 17:14:21 +08:00
Zexi Li
1e5d988346
Merge pull request #19422 from wanyaoqi/automated-cherry-pick-of-#19421-upstream-release-3.11
...
Automated cherry pick of #19421 : fix(host): init from guest mem obj miss size
2024-02-02 16:53:39 +08:00
wanyaoqi
7662f88edc
fix(host): init from guest mem obj miss size
2024-02-02 16:43:14 +08:00
Jian Qiu
a4758fbd15
fix: expand policy tags with org node tags ( #19416 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-02 14:10:53 +08:00
gouqi11
c7d6b053e5
fix(commom): setStatus with notify hook ( #19412 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-02-01 20:44:44 +08:00
屈轩
59dcb4260d
fix(region): ipv6 filter ( #19411 )
2024-02-01 18:52:48 +08:00
屈轩
483a97e6ad
fix(keystone): optimized user list ( #19404 )
2024-02-01 16:43:12 +08:00
Jian Qiu
9e61ae2c63
fix: allow binding organization ids to policy ( #19399 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-01 10:58:50 +08:00
屈轩
d6925ac5a9
fix(webconsole): support host ssh ( #19387 )
2024-02-01 10:58:19 +08:00
Jian Qiu
84f88b705b
fix: sync unknown guest status when host ping ( #19384 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-02-01 10:57:41 +08:00
屈轩
d3ec086f9c
fix(common): auto disable 3des cipher suites ( #19392 )
2024-02-01 10:57:03 +08:00
屈轩
6d3551745b
fix(region): avoid panic ( #19402 )
2024-02-01 10:12:01 +08:00
屈轩
f56e34ce77
fix(region): vendor update for sync ipv6 ( #19398 )
2024-01-31 20:57:32 +08:00
屈轩
5d55f60453
fix(region): cloudpods esxi disk create ( #19390 )
2024-01-31 17:30:32 +08:00
屈轩
681a43d160
fix(region): support managed ipv6 ( #19395 )
2024-01-31 17:29:55 +08:00
屈轩
0dbaba06d4
fix(region): project mapping key match at end of list ( #19381 )
2024-01-31 15:05:29 +08:00
Jian Qiu
c7c6477798
fix: vmware change config with cpu sockets ( #19375 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-31 15:04:47 +08:00
Zexi Li
cd45fd7e6b
fix(baremetal): admin nic is reset when added secondly ( #19377 )
2024-01-30 16:17:56 +08:00
屈轩
afbd0f922f
fix(region): cancel pending delete ( #19373 )
2024-01-30 14:12:45 +08:00
Zexi Li
5c61e4c46c
Merge pull request #19369 from swordqiu/automated-cherry-pick-of-#19368-upstream-release-3.11
...
Automated cherry pick of #19368 : fix: server change ip addr recode
2024-01-30 10:23:53 +08:00
屈轩
de25515eb0
fix(region): vendor update for optimized aliyun rds backup sync ( #19371 )
2024-01-29 18:07:45 +08:00
Qiu Jian
0464bf5239
fix: server change ip addr recode
2024-01-29 17:10:52 +08:00
屈轩
9eec520567
fix(webconsole): use common options ( #19330 )
2024-01-29 11:29:29 +08:00
Zexi Li
56869281c4
Merge pull request #19364 from swordqiu/automated-cherry-pick-of-#19363-upstream-release-3.11
...
Automated cherry pick of #19363 : fix: validate policy violation when assign users for oidc IDP
2024-01-28 21:58:50 +08:00
Qiu Jian
78123d0335
fix: validate policy violation when assign users for oidc IDP
2024-01-27 18:17:23 +08:00
Zexi Li
9442b445d0
fix(apigateway): ignore empty rows when registering baremetal host ( #19354 )
2024-01-27 18:16:42 +08:00
Zexi Li
08fdf688d4
fix(climc): wire is required when using network-create ( #19360 )
2024-01-27 18:05:21 +08:00
wanyaoqi
775d70be15
fix(host-deployer): escape back quote ( #19356 )
2024-01-27 08:09:59 +08:00
Zexi Li
ab29fa4c70
Merge pull request #19339 from swordqiu/automated-cherry-pick-of-#19338-upstream-release-3.11
...
Automated cherry pick of #19338 : fix: not resolve local domain with dns records
2024-01-26 16:05:18 +08:00
Zexi Li
21876d631c
Merge pull request #19347 from wanyaoqi/fix/host-deployer-disconnect
...
fix(host-deployer): check sshclient is nil on disconnect
2024-01-26 16:04:02 +08:00
wanyaoqi
ed2a412ed2
fix(host-deployer): check sshclient is nil on disconnect
2024-01-26 12:08:33 +08:00
屈轩
9c2dd4b0ea
fix(region): sync resource owner with auto-create-project options ( #19320 )
2024-01-26 11:14:22 +08:00
Zexi Li
a605f69560
Merge pull request #19344 from zexi/automated-cherry-pick-of-#19342-upstream-release-3.11
...
Automated cherry pick of #19342 : optimized(scheduler): remove fillResidentTenants function loading data from db
2024-01-25 17:10:57 +08:00
Zexi Li
c8aed17eb2
optimized(scheduler): remove fillResidentTenants function loading data from db
2024-01-25 17:07:05 +08:00
Zexi Li
6a708c2c6a
Merge pull request #19335 from zexi/automated-cherry-pick-of-#19334-upstream-release-3.11
...
Automated cherry pick of #19334 : fix(baremetal): hardcode h3c ipmi lan channel to 1
2024-01-25 15:49:51 +08:00
Qiu Jian
fb91b1e3eb
fix: not resolve local domain with dns records
2024-01-25 15:40:08 +08:00
Jian Qiu
45ee4b1b89
fix: ipv6 secgroup support ( #19337 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-25 13:25:42 +08:00
Zexi Li
22e7a3383a
fix(baremetal): hardcode h3c ipmi lan channel to 1
2024-01-25 11:54:02 +08:00
屈轩
fdf0c40119
fix(region): gcp secrule update ( #19324 )
2024-01-24 17:17:01 +08:00
屈轩
af4c02c0f1
fix(climc): optimized storagecache cmd ( #19322 )
2024-01-24 15:03:26 +08:00
Zexi Li
e18ad59800
Merge pull request #19316 from zexi/automated-cherry-pick-of-#19314-upstream-release-3.11
...
Automated cherry pick of #19314 : fix(build): use telegraf-raid-plugin:release-1.6.5
2024-01-22 16:59:30 +08:00
Zexi Li
3ad45a3cf9
fix(build): use telegraf-raid-plugin:release-1.6.5
2024-01-22 16:50:36 +08:00
Jian Qiu
6f22beca3c
fix(region): server change config input recode ( #19300 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-22 11:33:09 +08:00
屈轩
826532c5f9
fix(region): avoid panic ( #19311 )
2024-01-19 19:31:15 +08:00
屈轩
dc8c06a037
fix(region): auto encrypt options password ( #19308 )
2024-01-19 19:19:47 +08:00
屈轩
c0909bdd53
fix(region): vendor update for aws image import ( #19306 )
2024-01-19 16:14:39 +08:00
屈轩
0cafaf7445
fix(region): eip sync with project ( #19302 )
2024-01-19 14:04:19 +08:00
gouqi11
c132ae0cd6
feat(region): support notify for guest_status changed ( #19298 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-01-19 10:24:18 +08:00
gouqi11
bf6a035b53
feat(notify): SupportReceiverGetContactTypeByRoleId ( #19296 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-01-19 10:14:35 +08:00
屈轩
4187111862
fix(region): huawe redis spec code update ( #19294 )
2024-01-18 18:23:06 +08:00
屈轩
d01474470c
fix(region): check kvm vpc and security group relation ( #19292 )
2024-01-18 14:34:56 +08:00
屈轩
36254142a9
fix(region): huawei bucket create with usable regions ( #19290 )
2024-01-18 11:19:38 +08:00
gouqi11
15425550ef
fix(region): add public_cloud_provider list ( #19287 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-01-18 10:48:55 +08:00
Jian Qiu
cc1a5bcd2c
fix: windows ipv6 support ( #19280 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-17 19:47:34 +08:00
屈轩
e2e357f89c
fix(climc): add bill report for volc account ( #19284 )
2024-01-17 14:51:16 +08:00
Jian Qiu
a42ce1792e
fix: try resolve tenant by project id first ( #19277 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-17 00:28:30 +08:00
Jian Qiu
8c50a52fe0
fix: automatically refresh invalid admin token ( #19273 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-17 00:27:57 +08:00
Jian Qiu
72cd6e3e32
fix: dhcpv6 support in vpc network ( #19271 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-17 00:27:36 +08:00
屈轩
c58a3fd48a
fix(region): vendor update for pve vm sync ( #19266 )
2024-01-16 15:34:48 +08:00
屈轩
c1606f751d
fix(region): esxi vm create with tags ( #19263 )
2024-01-16 14:25:54 +08:00
屈轩
8bea62e5b9
fix(region): dns record update with enabled params ( #19261 )
2024-01-15 19:47:24 +08:00
gouqi11
4b2509d72b
feat(notify): support project notify ( #19259 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-01-15 19:35:07 +08:00
Zexi Li
e5829292e9
Merge pull request #19258 from ioito/automated-cherry-pick-of-#19257-upstream-release-3.11
...
Automated cherry pick of #19257 : fix(region): vendor update for aliyun security group rule create
2024-01-15 19:21:56 +08:00
ioito
e8f3e390ba
fix(region): vendor update for aliyun security group rule create
2024-01-15 19:12:14 +08:00
屈轩
cef7656187
fix(region): avoid duplicate cachedimage insert ( #19255 )
2024-01-15 18:30:44 +08:00
Jian Qiu
3c6da1faac
Automated cherry pick of #19249 : Feature/qj ipv6 support ( #19253 )
...
* feature: ipv6 support
* fix: ipv6 support more
* fix: update vendor for ipv6 support
* fix: allow enable ipv6 on existing guestnetwork
---------
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-15 13:33:02 +08:00
wanyaoqi
3b313f11ab
fix(host-deployer): add growpart resize partitions ( #19251 )
2024-01-15 12:14:41 +08:00
屈轩
3d703b9ed9
fix(region): huawei eip disassociate ( #19244 )
2024-01-12 19:32:08 +08:00
屈轩
05fda8da59
fix(region): avoid duplicate project create ( #19241 )
2024-01-12 19:16:17 +08:00
屈轩
27a9fab7cb
fix(region): huawei disk refresh ( #19238 )
2024-01-12 15:53:29 +08:00
屈轩
d95380c6d1
fix(cloudmon): huawei metric pull ( #19236 )
2024-01-12 15:40:02 +08:00
屈轩
f543323b51
fix(region): vendor update for huawei rds create ( #19232 )
2024-01-11 19:04:18 +08:00
Jian Qiu
845123b1b0
fix: no fetch owner scope when GetProperty ( #19230 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-11 18:58:52 +08:00
wanyaoqi
533b240a28
fix(host-deployer): add cmdline vsyscall=emulate on ramfs guest ( #19223 )
...
deploy fs on older system like centos 6, need emulate vsyscall.
otherwise will get error like:
Code: Unable to access opcode bytes at 0xffffffffff6003d6.
2024-01-11 05:45:08 +08:00
Jian Qiu
416a26d12e
fix: verbose api helper params ( #19220 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-11 05:43:59 +08:00
wanyaoqi
53dc58dc69
feat(region,host): shared lvm storage ( #19194 )
2024-01-10 23:26:23 +08:00
Zexi Li
f40c4e0644
Merge pull request #19196 from wanyaoqi/fix/host-register-skip-virtual-functions
...
fix(host): host-agent register skip upload vf nics
2024-01-10 10:28:22 +08:00
Zexi Li
270c2ff5fd
Merge pull request #19216 from wanyaoqi/automated-cherry-pick-of-#19215-upstream-release-3.11
...
Automated cherry pick of #19215 : fix(host-deployer): deploy params has special char
2024-01-10 10:27:16 +08:00
Zexi Li
cff4a7adac
Merge pull request #19214 from gouqi11/automated-cherry-pick-of-#19213-upstream-release-3.11
...
Automated cherry pick of #19213 : fix(notify): fix host webhook err
2024-01-10 10:00:03 +08:00
wanyaoqi
7149904806
fix(host-deployer): deploy params has special char
2024-01-09 23:06:18 +08:00
马鸿飞
e941f84ce2
fix(notify): add actionTranslate
2024-01-09 19:23:50 +08:00
屈轩
8cf0b0e216
fix(region): skip sync used ip addr ( #19208 )
2024-01-09 17:50:29 +08:00
屈轩
9cce3064b3
fix(region): image project tags ( #19211 )
2024-01-09 17:49:58 +08:00
屈轩
3a9aab679e
fix(region): avoid gcp secgroup delete failed ( #19206 )
2024-01-09 16:59:47 +08:00
屈轩
541464f035
fix(region): skip clear secgroup when delete vm ( #19200 )
2024-01-09 16:59:17 +08:00
wanyaoqi
abd0409f88
fix(host): host-agent register skip upload vf nics
2024-01-08 23:09:29 +08:00
屈轩
00283e54d2
fix(region): access group rule purge ( #19192 )
2024-01-08 15:52:24 +08:00
屈轩
28f58bca71
fix(region): simplify db init ( #19183 )
2024-01-08 14:19:17 +08:00
屈轩
449937a7ce
fix(region): volcengine network range ( #19188 )
2024-01-08 11:35:08 +08:00
屈轩
a845b12294
fix(region): support aliyun essd entry ( #19185 )
2024-01-08 11:18:06 +08:00
屈轩
c958e588b9
fix(region): access group without cache ( #19179 )
2024-01-05 19:58:49 +08:00
gouqi11
d19cd2ab53
fix(notify): add missing topic ( #19175 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-01-05 18:57:34 +08:00
屈轩
4f3948b6e5
fix(region): vendor update for zstack secgroup rule ( #19170 )
2024-01-05 10:39:06 +08:00
Jian Qiu
c4ebe1d2e4
fix: vpc dhcp options string value should be double quoted ( #19163 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-05 07:56:11 +08:00
gouqi11
4f6ffac66d
fix(notify): host topic bug fix ( #19168 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2024-01-04 19:21:06 +08:00
屈轩
3b8549d8c7
fix(region): add translate ( #19157 )
2024-01-02 16:49:26 +08:00
wanyaoqi
bdd9953199
fix(host): host register set isinit false on hostId not null ( #19154 )
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2024-01-02 14:01:19 +08:00
Jian Qiu
9f40a68157
fix: qmp free port test ( #19151 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2024-01-02 14:00:33 +08:00
wanyaoqi
486aa4edf4
fix(region): ovs offload interface get ifname from isolated devices tlb ( #19146 )
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2023-12-31 12:30:24 +08:00
Jian Qiu
5511fd7652
fix: automatically reserve guest gateway IP ( #19143 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-30 17:11:40 +08:00
Jian Qiu
7e8d6ee4b0
fix: deploy user ssh keypair for user account only ( #19134 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-30 16:56:36 +08:00
wanyaoqi
9f7f0f7caa
feat(region,host,host-deployer): infiniband nic sriov support ( #19127 )
2023-12-30 16:55:56 +08:00
屈轩
28a25ebade
fix(region): vendor update for huawei project sync ( #19140 )
2023-12-29 17:09:40 +08:00
Zexi Li
5593f125db
Merge pull request #19130 from swordqiu/automated-cherry-pick-of-#19129-upstream-release-3.11
...
Automated cherry pick of #19129 : fix: avoid megacli hang on adpallinfo
2023-12-29 16:37:06 +08:00
Qiu Jian
3f71995205
fix: avoid megacli hang on adpallinfo
2023-12-28 22:10:12 +08:00
gouqi11
c381cbde23
feat(notify): support notify for host ( #19122 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-12-27 20:07:32 +08:00
gouqi11
3a52563646
fix(monitor): fix alertRecord manager ( #19117 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-12-27 17:31:01 +08:00
屈轩
b8625cb2ab
fix(region): huawei subaccount ( #19118 )
2023-12-27 14:20:42 +08:00
屈轩
182662d5d1
fix(region): vendor update for deploy vm struct params ( #19114 )
2023-12-27 11:33:37 +08:00
屈轩
b55a39cc84
fix(climc): support set tencent cloud bill report ( #19108 )
2023-12-27 11:07:41 +08:00
wanyaoqi
382d8f6f39
fix(region,host-deployer): qga os distribution format ( #19109 )
...
host-deployer fix xfs mount error
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2023-12-26 20:15:17 +08:00
Jian Qiu
0fa95647d5
fix: delete server will purge instance backups ( #19103 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-26 15:45:00 +08:00
Jian Qiu
b4f6c11538
Automated cherry pick of #19095 : Feature/qj support default interface ( #19102 )
...
* fix: support default gateway interface
* fix: default gateway 2
---------
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-26 15:35:14 +08:00
wanyaoqi
aa210a77f6
feat(region,host): guest sync os info ( #19099 )
2023-12-26 12:49:24 +08:00
屈轩
0bfc248ecc
fix(region): optimized host-list speed ( #19094 )
2023-12-26 11:04:15 +08:00
屈轩
a1ab937ef7
fix(region): esxi change config ( #19090 )
2023-12-25 14:36:26 +08:00
屈轩
8415fee8c4
fix(region): change storage_size from int to int64 ( #19086 )
2023-12-22 18:36:15 +08:00
Zexi Li
84d692dbad
Merge pull request #19081 from ioito/automated-cherry-pick-of-#19080-upstream-release-3.11
...
Automated cherry pick of #19080 : fix(region): avoid for-loop sync volcengine disks
2023-12-22 17:32:43 +08:00
Zexi Li
d839af0a58
Merge pull request #19083 from wanyaoqi/automated-cherry-pick-of-#19082-upstream-release-3.11
...
Automated cherry pick of #19082 : fix(host-deployer): check executor is enabled on init qemu driver
2023-12-22 17:32:04 +08:00
wanyaoqi
97425a471a
fix(host-deployer): check executor is enabled on init qemu driver
2023-12-22 17:19:53 +08:00
ioito
bb3f48a374
fix(region): avoid for-lool sync volcengine disks
2023-12-22 16:31:01 +08:00
屈轩
21132195a9
fix(region): optimized disk list ( #19077 )
2023-12-22 14:49:38 +08:00
屈轩
1c2e36a40b
fix(region): add disk preallocation for guest info ( #19075 )
2023-12-22 10:36:02 +08:00
屈轩
c6401d7694
fix(region): remove debug sql query ( #19073 )
2023-12-21 20:50:42 +08:00
Zexi Li
e7f446047c
feat(baremetal-agent): support using tftp to download kernel and initrd ( #19065 )
2023-12-21 00:50:58 +08:00
屈轩
7a922aeede
fix(region): refactor huawei api for support organization ( #19068 )
2023-12-20 19:31:18 +08:00
Zexi Li
9b0648fca8
Merge pull request #19059 from swordqiu/automated-cherry-pick-of-#19057-upstream-release-3.11
...
Automated cherry pick of #19057 : fix: webconsole ssh open forward failure
2023-12-20 11:37:52 +08:00
屈轩
62103bd7dd
fix(region): vendor update for volcengine network and aws dnsrecords sync ( #19062 )
2023-12-20 11:35:11 +08:00
Qiu Jian
d37a437e0d
fix: webconsole ssh open forward failure
2023-12-20 00:08:09 +08:00
屈轩
e11af2d012
fix(region): ignore empty certificate error for ssl sync ( #19054 )
2023-12-19 20:26:13 +08:00
Zexi Li
40681ccf44
Merge pull request #19052 from ioito/automated-cherry-pick-of-#19051-upstream-release-3.11
...
Automated cherry pick of #19051 : fix(region): avoid rds vcpu count is zero
2023-12-19 14:25:56 +08:00
屈轩
8955cd8e1d
fix(region): add log for skiped pending deleted vm ( #19050 )
2023-12-19 13:28:22 +08:00
ioito
a9285aff4b
fix(region): avoid rds vcpu count is zero
2023-12-19 13:26:25 +08:00
Zexi Li
f5e837ec75
Merge pull request #19047 from zhasm/automated-cherry-pick-of-#19046-upstream-release-3.11
...
Automated cherry pick of #19046 : fix(docker): update dockerfile for ansible-base
2023-12-19 13:17:01 +08:00
Zhang Dongliang
83d9774ed6
fix(docker): update dockerfile for ansible-base
2023-12-19 13:09:21 +08:00
屈轩
fc235cbb88
fix(region): snapshot policy sync external id ( #19043 )
2023-12-18 19:14:18 +08:00
Zexi Li
b288cda5c7
Merge pull request #19035 from swordqiu/automated-cherry-pick-of-#19033-upstream-release-3.11
...
Automated cherry pick of #19033 : fix: disable pvpanic dev
2023-12-18 17:26:50 +08:00
Zexi Li
8b4d4bbb3a
Merge pull request #19032 from wanyaoqi/automated-cherry-pick-of-#19031-upstream-release-3.11
...
Automated cherry pick of #19031 : fix(host-deployer): pass config files to deploy vm
2023-12-18 17:25:17 +08:00
Zexi Li
c31d40d31e
Merge pull request #19038 from wanyaoqi/automated-cherry-pick-of-#19037-upstream-release-3.11
...
Automated cherry pick of #19037 : fix(host): usb device hotplug
2023-12-18 17:23:09 +08:00
wanyaoqi
20d18137a5
fix(host): hot add usb device
2023-12-18 17:06:18 +08:00
wanyaoqi
9ce5fa6290
fix(host): usb host device add device_id
2023-12-18 17:06:18 +08:00
Qiu Jian
5700b3555d
fix: disable pvpanic dev
2023-12-18 16:45:04 +08:00
wanyaoqi
fd1910480e
fix(host-deployer): pass config files to deploy vm
2023-12-18 16:42:46 +08:00
屈轩
727390d6d5
fix(region): The latest api of Huawei cloud elb and eip is applicable ( #19028 )
2023-12-18 15:41:26 +08:00
gouqi11
01f38f9f3e
feat(region): add ip_addr for rds.GetShortDesc ( #19022 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-12-16 16:38:57 +08:00
屈轩
724fbac416
fix(region): do not clean up the running vm in the recycle bin ( #19016 )
2023-12-16 12:51:09 +08:00
Zexi Li
4823e1b471
Merge pull request #19013 from swordqiu/automated-cherry-pick-of-#19012-upstream-release-3.11
...
Automated cherry pick of #19012 : fix: webconsole display information control
2023-12-16 10:10:39 +08:00
Zexi Li
004cedc130
Merge pull request #19010 from zexi/automated-cherry-pick-of-#19007-upstream-release-3.11
...
Automated cherry pick of #19007 : fix(scheduler): reload cloudprovider's hosts when syncing finished
2023-12-16 10:06:09 +08:00
Qiu Jian
2292a08364
fix: webconsole display information control
2023-12-15 21:19:18 +08:00
Zexi Li
fff91b8eca
fix(scheduler): reload cloudprovider's hosts when syncing finished
2023-12-15 20:19:32 +08:00
屈轩
644b2a20ab
fix(region): refactor snapshot policy ( #19006 )
2023-12-15 17:08:01 +08:00
Zexi Li
0e5a31c41e
fix(cloudcommon): service config informer doesn't start watching ( #19004 )
2023-12-15 14:58:48 +08:00
Zexi Li
7103249d75
Merge pull request #18998 from swordqiu/automated-cherry-pick-of-#18997-upstream-release-3.11
...
Automated cherry pick of #18997 : fix: refine webconsole ssh api
2023-12-15 11:50:43 +08:00
Zexi Li
b9c7c59188
Merge pull request #19000 from wanyaoqi/automated-cherry-pick-of-#18999-upstream-release-3.11
...
Automated cherry pick of #18999 : fix(host-deployer): udpate yunionos, reduce yunionos memsize
2023-12-15 11:50:14 +08:00
wanyaoqi
746a96722c
fix(host-deployer): udpate yunionos, reduce yunionos memsize
2023-12-15 11:41:11 +08:00
Qiu Jian
b66c3efd27
fix: refine webconsole ssh api
2023-12-15 10:40:27 +08:00
屈轩
ec08fce85a
fix(region): remove useless snapshot policy code ( #18993 )
2023-12-14 11:56:12 +08:00
屈轩
ef5fee6c8b
fix(region): avoid duplicate rule name for gcp ( #18990 )
2023-12-14 11:23:38 +08:00
wanyaoqi
1f25fc17b8
feat(region,host): clvm support ( #18978 )
2023-12-14 09:41:54 +08:00
Zexi Li
d811d64fce
Merge pull request #18986 from swordqiu/automated-cherry-pick-of-#18985-upstream-release-3.11
...
Automated cherry pick of #18985 : fix: backup storage capacity_mb field optional
2023-12-14 03:28:21 +08:00
屈轩
c19596176c
fix(region): set status available for kvm secgroup rule after created ( #18988 )
2023-12-13 21:26:29 +08:00
Qiu Jian
f7db51b504
fix: backup storage capacity_mb field optional
2023-12-13 19:52:39 +08:00
Zexi Li
f4d9166c79
Merge pull request #18981 from zexi/monitor-vm-measurements
...
fix(monitor): fetch measurements from victoriametrics
2023-12-13 19:47:15 +08:00
Zexi Li
aef50a49a6
fix(monitor): fetch measurements from victoriametrics
2023-12-13 18:49:40 +08:00
Zexi Li
a5f2194afc
Merge pull request #18977 from zexi/automated-cherry-pick-of-#18975-upstream-release-3.11
...
Automated cherry pick of #18975 : fix(monitor): consider whether the target host is in source host of mem balancer
2023-12-13 13:38:28 +08:00
Zexi Li
796bea5d7c
fix(monitor): consider whether the target host is in source host of mem balancer
2023-12-13 12:54:37 +08:00
Zexi Li
d2bf8c44ad
Merge pull request #18970 from ioito/automated-cherry-pick-of-#18969-upstream-release-3.11
...
Automated cherry pick of #18969 : fix(region): vendor update for gcp rebuild-root sys disk size and password login
2023-12-12 18:21:15 +08:00
ioito
3258a85236
fix(region): vendor update for gcp rebuild-root sys disk size and password login
2023-12-12 17:23:52 +08:00
Zexi Li
ee102ca0c6
Merge pull request #18966 from wanyaoqi/automated-cherry-pick-of-#18965-upstream-release-3.11
...
Automated cherry pick of #18965 : fix(host-deployer): run guest on host and ignore no config file
2023-12-12 15:18:59 +08:00
wanyaoqi
afd5a1f716
fix(host-deployer): run guest on host and ignore no config file
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2023-12-12 14:56:03 +08:00
Zexi Li
34a1f623ef
Merge pull request #18952 from swordqiu/automated-cherry-pick-of-#18951-upstream-release-3.11
...
Automated cherry pick of #18951 : fix: ignore vm virtual ip changes
2023-12-12 09:34:27 +08:00
Zexi Li
4e8cea612a
Merge pull request #18955 from swordqiu/hotfix/qj-more-verbose-metric-collection
...
fix: log metric collection action
2023-12-11 16:18:29 +08:00
Qiu Jian
e9cea00f2d
fix: log metric collection action
2023-12-11 00:28:44 +08:00
Qiu Jian
b81d367f95
fix: ignore vm virtual ip changes
2023-12-10 13:28:26 +08:00
Jian Qiu
91ced9d0f4
fix: host add a local config file ( #18933 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-08 21:26:40 +08:00
屈轩
22b68fe2d4
fix(region): support volc balance and gcp api retry ( #18947 )
2023-12-08 17:56:42 +08:00
屈轩
d0e8273b51
fix(region): optimized sync code ( #18944 )
2023-12-08 15:06:47 +08:00
Zexi Li
4959215d7a
Merge pull request #18939 from zexi/monitor-domain-no-metrics
...
fix(monitor): not add scope to query resource from region service
2023-12-08 12:41:51 +08:00
Zexi Li
cc1c57155c
fix(monitor): not add scope to query resource from region service
2023-12-08 12:28:20 +08:00
Zexi Li
5d886e304d
Merge pull request #18928 from swordqiu/automated-cherry-pick-of-#18927-upstream-release-3.11
...
Automated cherry pick of #18927 : fix: no default fallback dns server
2023-12-08 10:47:06 +08:00
Zexi Li
100f41bdd9
Merge pull request #18926 from zexi/climc-monitor-query
...
feat(monitor): make simple-query API adapting victoriametrics and add monitor-unifiedmonitor-query command
2023-12-08 10:46:11 +08:00
Zexi Li
590cba97bb
feat(climc): add monitor-unifiedmonitor-query command
2023-12-08 10:05:02 +08:00
Qiu Jian
a8f985a188
fix: no default fallback dns server
2023-12-08 01:16:18 +08:00
Zexi Li
8eaa742333
fix(monitor): make simple-query API adapt to victoriametrics
2023-12-08 00:31:22 +08:00
Zexi Li
ed990bd55f
Merge pull request #18923 from ioito/automated-cherry-pick-of-#18922-upstream-release-3.11
...
Automated cherry pick of #18922 : fix(region): cloudpods uefi and generate name
2023-12-07 16:41:07 +08:00
Zexi Li
837c29e34f
Merge pull request #18917 from wanyaoqi/automated-cherry-pick-of-#18916-upstream-release-3.11
...
Automated cherry pick of #18916 : Fix/host deployer
2023-12-07 16:40:18 +08:00
ioito
7cadeea34f
fix(region): cloudpods uefi and generate name
2023-12-07 16:15:02 +08:00
wanyaoqi
9da12b090a
fix(host-deployer): disconnect fix and concurrence control
2023-12-07 16:05:21 +08:00
屈轩
5ae6751ad3
fix(webconsole): rdp 用户隔离上传文件 ( #18921 )
2023-12-07 15:22:14 +08:00
屈轩
1570a14746
feat(webconsole): support sftp for ssh ( #18919 )
2023-12-07 14:54:19 +08:00
wanyaoqi
8bfb666129
fix:(host-deployer): arm guest add gic version
2023-12-07 10:37:11 +08:00
屈轩
df3571f972
fix: guacd docker file mkdir required dir ( #18913 )
2023-12-06 17:03:40 +08:00
Zexi Li
0060fce771
Merge pull request #18909 from zexi/automated-cherry-pick-of-#18908-upstream-release-3.11
...
Automated cherry pick of #18908 : fix(monitor): map interval to step
2023-12-06 16:16:23 +08:00
Zexi Li
db7808a683
Merge pull request #18908 from zexi/vm-map
...
fix(monitor): map interval to step
2023-12-06 16:16:08 +08:00
Zexi Li
4cbd9fcdfd
fix(monitor): map interval to step
2023-12-06 15:32:40 +08:00
Jian Qiu
fb86463bbf
fix: esxi hotadd cpu limit ( #18893 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-06 15:31:15 +08:00
Zexi Li
887132e297
fix(monitor): map interval to step
2023-12-06 15:31:08 +08:00
屈轩
370c405684
fix(keystone): remove deleted project metadata ( #18906 )
2023-12-06 15:29:51 +08:00
屈轩
92c23a245b
fix(webconsole): optimized guacd error log ( #18904 )
2023-12-06 11:59:49 +08:00
Zexi Li
bd54efcd2e
Merge pull request #18897 from zexi/monitor-vm-top
...
fix(monitor): update vendor to support victoriametrics topk func
2023-12-05 18:23:19 +08:00
Zexi Li
f212295104
fix(monitor): update vendor to support victoriametrics topk func
2023-12-05 18:01:36 +08:00
Jian Qiu
bc5982907e
fix: add index for token_cache_tbl to accelerate invalid token query ( #18890 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-05 12:22:27 +08:00
Jian Qiu
01e764e62e
fix: clickhouse mapping table use the same name as origin ( #18888 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-05 12:22:02 +08:00
Zexi Li
5698d47252
Merge pull request #18881 from ioito/automated-cherry-pick-of-#18880-upstream-release-3.11
...
Automated cherry pick of #18880 : fix(region): avoid cloudmon no cloudprovider sync
2023-12-05 12:06:58 +08:00
Zexi Li
3ec0372159
Merge pull request #18883 from ioito/automated-cherry-pick-of-#18882-upstream-release-3.11
...
Automated cherry pick of #18882 : fix: show update oc cmd
2023-12-05 12:06:25 +08:00
ioito
76b81e33d4
fix: show update oc cmd
2023-12-05 10:40:18 +08:00
ioito
19378997ee
fix(region): avoid cloudmon no cloudprovider sync
2023-12-05 10:05:50 +08:00
Jian Qiu
b20ec7bdb3
fix: mapping mysql tables into clickhouse with Engine MySQL ( #18878 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-05 07:08:29 +08:00
wanyaoqi
32f2bc5821
fix(host-deployer): qemu deployer without kvm support ( #18874 )
2023-12-05 07:07:11 +08:00
wanyaoqi
ffafcdb7c1
fix(region): add option control enable default dns server ( #18872 )
2023-12-04 17:02:14 +08:00
Zexi Li
7a87d00304
Merge pull request #18868 from ioito/automated-cherry-pick-of-#18867-upstream-release-3.11
...
Automated cherry pick of #18867 : fix(region): vendor update
2023-12-04 15:25:58 +08:00
ioito
d6fd14c39a
fix(region): vendor update
2023-12-04 14:59:37 +08:00
Zexi Li
f65d175990
Merge pull request #18864 from wanyaoqi/automated-cherry-pick-of-#18863-upstream-release-3.11
...
Automated cherry pick of #18863 : fix(host-deployer,host): mv deploy driver option to common options
2023-12-04 14:35:21 +08:00
屈轩
3bc094e9d7
fix(region): vendor update ( #18861 )
2023-12-04 14:26:18 +08:00
wanyaoqi
45bec04fde
fix(host-deployer,host): mv deploy driver option to common options
2023-12-04 14:22:17 +08:00
Zexi Li
973ef23b42
Merge pull request #18857 from wanyaoqi/fix/qemu-deploy-guest-3-11
...
Manual cherrypick of #18856
2023-12-04 10:35:28 +08:00
wanyaoqi
4c9e7e1ddd
fix(host-deployer): update base image and fix return errors
2023-12-04 01:49:15 +08:00
Jian Qiu
673d67f586
fix: reserve ping probed ip with expiration ( #18855 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-03 22:27:26 +08:00
Jian Qiu
f243c3d66f
fix: force assign ip address when sync vm vnics ( #18853 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-12-03 15:34:36 +08:00
Zexi Li
c31ace6222
fix(baremetal): disable probe access mac by redfish driver ( #18846 )
2023-12-03 15:17:51 +08:00
Zexi Li
e17ace8c64
Merge pull request #18845 from zexi/automated-cherry-pick-of-#18843-upstream-release-3.11
...
Automated cherry pick of #18843 : feat(ci): use github action to check PR
2023-12-01 14:58:54 +08:00
Zexi Li
9079f4c8bb
feat(ci): use github action to check PR
2023-12-01 14:54:55 +08:00
Jian Qiu
f4e0db5c11
fix: server create instance backup parameters ( #18842 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-30 20:19:17 +08:00
屈轩
fe78f19e14
fix(region): 增加配置项,支持标签不再同步至云上功能 ( #18838 )
2023-11-30 19:12:52 +08:00
屈轩
e333fb6f36
fix(webconsole): rdp stop ( #18841 )
2023-11-30 19:12:29 +08:00
Jian Qiu
3739da2114
Automated cherry pick of #18831 : Hotfix/qj esxi sync ips support ( #18836 )
...
* fix: support esxi subips
* update vendor
---------
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-30 18:04:12 +08:00
wanyaoqi
7bc08d6dfe
fix(host): guest switch to backup ( #18834 )
2023-11-30 17:14:56 +08:00
wanyaoqi
5aeb7eabcb
Automated cherry pick of #18821 : Feat/deploy guest ( #18822 )
...
* feat(region): add guest rescue api && download initrd from baremetal tftp server && add baremetal agent ip finder & update pic address & support ip kernel config.
* feat(host-deployer): use qemu-kvm as default deploy dirver
---------
Co-authored-by: boironic@gmail.com <boironic@gmail.com >
2023-11-30 16:50:08 +08:00
屈轩
1647a7dd00
fix(region): optional vcpu when change vm config ( #18826 )
2023-11-30 13:33:42 +08:00
屈轩
d259d7adc9
fix(region): skip sync meta if no public cloud register ( #18828 )
2023-11-30 13:33:16 +08:00
Jian Qiu
a76d8fc4f3
fix: filter networks by host type ( #18819 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-30 00:07:49 +08:00
屈轩
13d26f7b43
fix(webconsole): checke rdp password ( #18817 )
2023-11-29 19:07:43 +08:00
屈轩
362e5467c8
fix(webconsole): rdp enable drive ( #18806 )
2023-11-29 19:07:10 +08:00
屈轩
8472fe65b6
fix(region): vendor update ( #18815 )
2023-11-29 15:00:41 +08:00
屈轩
0b8c6a0255
fix(region): 只读账号增量更新标签 ( #18812 )
2023-11-29 14:53:46 +08:00
Jian Qiu
75435de8a8
fix: generalized metadata getter ( #18808 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-29 09:04:21 +08:00
屈轩
a3270d53e9
feat(webconsole): support rdp ( #18803 )
2023-11-28 10:47:14 +08:00
Zexi Li
dc7a451a4d
Merge pull request #18801 from swordqiu/automated-cherry-pick-of-#18800-upstream-release-3.11
...
Automated cherry pick of #18800 : fix: customized show content of get-property
2023-11-28 10:09:34 +08:00
Qiu Jian
12aaad6cd9
fix: customized show content of get-property
2023-11-28 09:13:32 +08:00
Zexi Li
22b098b4a2
Merge pull request #18797 from zexi/nvidia-gpu-metrics
...
fix(monitor): register agent_nvidia_smi metrics
2023-11-27 19:32:12 +08:00
Zexi Li
731af95698
fix(monitor): register agent_nvidia_smi metrics
2023-11-27 19:11:06 +08:00
Zexi Li
32a7f70edd
Merge pull request #18792 from wanyaoqi/automated-cherry-pick-of-#18791-upstream-release-3.11
...
Automated cherry pick of #18791 : fix(region): alloc ovn_mapped_ip_addr on host post create
2023-11-27 19:07:42 +08:00
Zexi Li
9e42caa08b
Merge pull request #18788 from swordqiu/automated-cherry-pick-of-#18787-upstream-release-3.11
...
Automated cherry pick of #18787 : fix: cloud account update aliyun billing scope
2023-11-27 19:06:47 +08:00
屈轩
98e818b182
fix(region): revert os dist filter and sort ( #18794 )
2023-11-27 17:34:40 +08:00
wanyaoqi
3aa27eaad5
fix(region): alloc ovn_mapped_ip_addr on host post create
2023-11-27 17:19:44 +08:00
Qiu Jian
283a6fa5aa
fix: cloud account update aliyun billing scope
2023-11-27 01:26:10 +08:00
Zexi Li
3a9b11c57d
Merge pull request #18784 from swordqiu/feature/qj-backup-support-object-storage
...
feature: backup support object storage
2023-11-26 20:56:16 +08:00
Qiu Jian
2dec7a3726
fix: encrypt object storage secret
2023-11-26 19:53:57 +08:00
Qiu Jian
f8284d8bc1
fix: update model api
2023-11-26 16:55:42 +08:00
Qiu Jian
20167c2afd
feature: backup support object storage
2023-11-26 16:01:46 +08:00
Zexi Li
8adf5abf86
feat(host): use IsolatedDeviceModels as GPU whitelist ( #18783 )
2023-11-25 19:41:05 +08:00
Zexi Li
06dc39a591
feat(host): use IsolatedDeviceModels as GPU whitelist ( #18780 )
2023-11-25 19:40:53 +08:00
屈轩
6bef6a1cb6
fix(region): trim metadata key ( #18776 )
2023-11-24 22:17:47 +08:00
屈轩
04c6ee73a8
fix(region): vm filter by os dist ( #18778 )
2023-11-24 20:06:05 +08:00
屈轩
f7c83468ea
fix(region): distinct os dist field ( #18768 )
2023-11-24 11:51:55 +08:00
屈轩
39f3c7a1e4
fix(region): show guest gpu model ( #18766 )
2023-11-23 12:39:47 +08:00
Jian Qiu
7fd56f1baa
fix: hot add mem check for esxi vm ( #18763 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-23 12:20:52 +08:00
Zexi Li
c6f6329bcd
Merge pull request #18760 from swordqiu/automated-cherry-pick-of-#18757-upstream-release-3.11
...
Automated cherry pick of #18757 : fix: hot add mem check for esxi vm
2023-11-23 10:15:29 +08:00
Qiu Jian
fef1b4a578
fix: hot add mem check for esxi vm
2023-11-23 09:54:08 +08:00
Zexi Li
c309fdd3c1
feat(region): add nvidia_smi telegraf input plugin ( #18751 )
2023-11-23 00:19:40 +08:00
屈轩
7504c2eb5b
fix(keystone): project clean ( #18742 )
2023-11-21 21:10:23 +08:00
Zexi Li
ffb8ff3df8
Merge pull request #18746 from zexi/monitor-vm-mul-query
...
fix(monitor): query multiple fileds from victoria-metrics
2023-11-21 18:05:47 +08:00
Zexi Li
ece44e0698
fix(monitor): query multiple fileds from victoria-metrics
2023-11-21 17:44:22 +08:00
Zexi Li
d0f045b65f
Merge pull request #18744 from ioito/automated-cherry-pick-of-#18743-upstream-release-3.11
...
Automated cherry pick of #18743 : fix(region): remove useless filter params
2023-11-21 17:16:45 +08:00
ioito
bd7319daf7
fix(region): remove useless filter params
2023-11-21 16:05:53 +08:00
屈轩
7461a25508
fix(region): cpu socket ( #18732 )
2023-11-21 15:08:36 +08:00
Zexi Li
16d6212c45
Merge pull request #18736 from zexi/srv-hardware-info
...
feat(region,host,climc): aggregate server hardware information
2023-11-21 14:08:56 +08:00
Zexi Li
8fb19b87d2
feat(region,host,climc): aggregate server hardware information
2023-11-21 12:00:19 +08:00
gouqi11
c763fc68dc
feat(common): log support rebilling ( #18738 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-20 19:21:10 +08:00
屈轩
46b435ca5b
fix(region): vendor update for aliyun tags ( #18728 )
2023-11-17 16:30:25 +08:00
gouqi11
cd9ee7bc9a
fix(notify): fix webhook brand ( #18724 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-17 15:37:21 +08:00
屈轩
acac041bec
fix(region): redis cloudregion id ( #18722 )
2023-11-17 15:19:53 +08:00
Zexi Li
950a02183b
Merge pull request #18720 from zexi/automated-cherry-pick-of-#18718-upstream-release-3.11
...
Automated cherry pick of #18718 : fix(climc): bash completion is not working
2023-11-17 12:34:01 +08:00
Zexi Li
440a7fa5fc
fix(climc): bash completion is not working
2023-11-17 12:03:27 +08:00
屈轩
1abb1086ed
fix(region): vendor update ( #18715 )
2023-11-17 11:34:28 +08:00
屈轩
4c84f1cbe1
fix(region): vendor update ( #18712 )
2023-11-17 10:08:47 +08:00
gouqi11
28644d3da4
Automated cherry pick of #18704 : fix(region): rds skip notImplementedErr ( #18710 )
...
* fix(region): rds skip notImplementedErr
* fix(region): aws redis set metadata status
---------
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-16 17:20:45 +08:00
屈轩
5bf44a67ac
fix(region): vendor update ( #18707 )
2023-11-16 17:17:40 +08:00
gouqi11
340f458ff4
update vendor ( #18702 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-16 10:01:00 +08:00
gouqi11
89efdbc642
fix(region): fix db_dispatcher duplicate notify ( #18699 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-15 17:02:43 +08:00
Jian Qiu
885f4ebcd8
fix: update lb cluster with patch params ( #18696 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-15 08:57:28 +08:00
Jian Qiu
7783546754
fix: windows GPU vm should set hypervisor=off ( #18691 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-15 08:56:43 +08:00
Jian Qiu
b3580ab64f
fix: make host dhcp lease options global ( #18683 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-15 08:55:14 +08:00
Jian Qiu
a757ea3dd8
fix: host set nil metadata ( #18688 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-15 08:54:34 +08:00
Jian Qiu
b2b60ff660
fix: organization node weight not effective ( #18694 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-15 08:54:08 +08:00
Zexi Li
30ee89a390
feat(region,climc): add set-os-info api ( #18680 )
2023-11-14 22:59:56 +08:00
Zexi Li
9706339eac
Merge pull request #18670 from wanyaoqi/automated-cherry-pick-of-#18669-upstream-release-3.11
...
Automated cherry pick of #18669 : fix(host): sync sriov nic bw on change config
2023-11-14 20:25:31 +08:00
屈轩
aa6e34e98d
feat(region): support oracle cloud ( #18679 )
2023-11-14 19:43:29 +08:00
gouqi11
e99c7bed63
Automated cherry pick of #18663 : fix(keystone): fix usage for projectNum ( #18664 )
...
* feat(region): support action to reBilling
* fix(keystone): fix keystone usage for projectNum
---------
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-14 19:32:22 +08:00
Zexi Li
c810a3b144
fix(host): setup routes from start to end ( #18674 )
2023-11-14 17:56:11 +08:00
wanyaoqi
77ff5fcd44
fix(host): sync sriov nic bw on change config
2023-11-14 16:31:11 +08:00
Zexi Li
64027a3280
Merge pull request #18666 from wanyaoqi/automated-cherry-pick-of-#18665-upstream-release-3.11
...
Automated cherry pick of #18665 : fix(regin): instance snapshot create guest fill os arch
2023-11-14 14:47:48 +08:00
Zexi Li
8606e6cfbd
Merge pull request #18662 from ioito/automated-cherry-pick-of-#18661-upstream-release-3.11
...
Automated cherry pick of #18661 : fix(region): order by os dist
2023-11-14 14:44:54 +08:00
wanyaoqi
0ad56aa42f
fix(regin): instance snapshot create guest fill os arch
2023-11-14 11:16:46 +08:00
ioito
4c2d42a79f
fix(region): order by os dist
2023-11-14 10:47:11 +08:00
Zexi Li
9b8094c9a5
Merge pull request #18656 from zexi/automated-cherry-pick-of-#18655-upstream-release-3.11
...
Automated cherry pick of #18655 : fix(host): catch init error
2023-11-13 21:12:38 +08:00
Zexi Li
7702776d8f
Merge pull request #18658 from zexi/automated-cherry-pick-of-#18634-upstream-release-3.11
...
Automated cherry pick of #18634 : chore: unnecessary use of fmt.Sprintf d
2023-11-13 20:44:49 +08:00
guoguangwu
65d66edbc7
chore: unnecessary use of fmt.Sprintf d
...
Signed-off-by: guoguangwu <guoguangwu@magic-shield.com >
2023-11-13 20:42:42 +08:00
Zexi Li
b3180bd87a
fix(host): catch init error
2023-11-13 20:40:12 +08:00
Zexi Li
aad04d9cdc
Merge pull request #18645 from swordqiu/automated-cherry-pick-of-#18644-upstream-release-3.11
...
Automated cherry pick of #18644 : fix: extend gpu pci class codes
2023-11-13 19:19:38 +08:00
屈轩
845eecc217
fix(yunionconf): allow disable bug report ( #18654 )
2023-11-13 19:03:58 +08:00
屈轩
59f5c5beea
fix(region): vm gpu notes ( #18652 )
2023-11-13 18:15:40 +08:00
屈轩
1a2c830a76
fix(region): esxi support preallocation vdisk ( #18648 )
2023-11-13 18:15:18 +08:00
Zexi Li
55707f159a
Merge pull request #18640 from wanyaoqi/automated-cherry-pick-of-#18639-upstream-release-3.11
...
Automated cherry pick of #18639 : fix(region,host): sriov nic hotplug and metrics fix
2023-11-13 17:02:35 +08:00
Zexi Li
a6928cfa67
Merge pull request #18635 from ioito/automated-cherry-pick-of-#18633-upstream-release-3.11
...
Automated cherry pick of #18633 : fix(region): esxi disk storage
2023-11-13 16:58:53 +08:00
Qiu Jian
d9e8372d90
fix: extend gpu pci class codes
2023-11-13 16:21:26 +08:00
wanyaoqi
550bfc53b4
fix(region,host): sriov nic hotplug and metrics fix
2023-11-13 14:40:28 +08:00
Zexi Li
6ee1dbedb0
Merge pull request #18637 from wanyaoqi/automated-cherry-pick-of-#18636-upstream-release-3.11
...
Automated cherry pick of #18636 : fix(region): change config check traffic limit params
2023-11-13 11:38:43 +08:00
wanyaoqi
2de131eb27
fix(region): change config check traffic limit params
2023-11-13 11:21:47 +08:00
ioito
c43f0cedf6
fix(region): esxi disk storage
2023-11-13 10:49:36 +08:00
Zexi Li
5183678684
Merge pull request #18632 from ioito/automated-cherry-pick-of-#18631-upstream-release-3.11
...
Automated cherry pick of #18631 : fix(cloudmon): collect metric with project tags
2023-11-10 16:45:40 +08:00
Zexi Li
08288b2d75
Merge pull request #18627 from swordqiu/automated-cherry-pick-of-#18625-upstream-release-3.11
...
Automated cherry pick of #18625 : fix: cloudprovider external id
2023-11-10 16:40:21 +08:00
ioito
de19868d32
fix(cloudmon): collect metric with project tags
2023-11-10 16:33:28 +08:00
屈轩
6a7c109c83
fix(region): vendor update ( #18630 )
2023-11-10 16:09:56 +08:00
Zexi Li
cacb1e3c6f
Merge pull request #18616 from zexi/automated-cherry-pick-of-#18545-upstream-release-3.11
...
Automated cherry pick of #18545 : feat(monitor,region,host,cloudmon): support VictoriaMetrics as TSDB backend
2023-11-10 16:05:34 +08:00
屈轩
54ec8acbeb
fix(common): support report bug ( #18628 )
2023-11-10 15:46:22 +08:00
Zexi Li
4f96f2e5fa
feat(monitor,region,host,cloudmon): support VictoriaMetrics as TSDB backend
2023-11-10 15:34:01 +08:00
Qiu Jian
889e9577ef
fix: cloudprovider external id
2023-11-10 12:07:55 +08:00
屈轩
698937280a
fix(region): vendor update ( #18623 )
2023-11-10 11:59:09 +08:00
屈轩
bac8ecf432
fix(region): qcloud secgroup rule priority ( #18621 )
2023-11-10 11:54:59 +08:00
Zexi Li
853855d174
Merge pull request #18619 from gouqi11/automated-cherry-pick-of-#18618-upstream-release-3.11
...
Automated cherry pick of #18618 : fix(keystone): fix usage empty projectTags
2023-11-09 16:09:52 +08:00
马鸿飞
0450883be1
fix(keystone): fix usage empty projectTags
2023-11-09 15:32:15 +08:00
Zexi Li
b6247630f9
Merge pull request #18614 from ioito/automated-cherry-pick-of-#18613-upstream-release-3.11
...
Automated cherry pick of #18613 : fix(region): pve cdrom with host info
2023-11-09 12:18:18 +08:00
ioito
4c8fd267a8
fix(region): pve cdrom with host info
2023-11-09 12:05:01 +08:00
屈轩
82be65ecaf
fix(region): avoid panic when sync aliyun redis ( #18607 )
2023-11-08 20:56:31 +08:00
gouqi11
ffcc092089
feat(usage): support project count ( #18611 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-08 20:36:49 +08:00
屈轩
7ca7bf48ab
fix(webconsole): pve vnc support ( #18604 )
2023-11-08 19:35:11 +08:00
Zexi Li
fc4cc7d0b1
fix(host): ignore error when add bridge ip address route ( #18601 )
2023-11-08 17:39:45 +08:00
屈轩
0fd0284051
fix(region): clean invalid skus ( #18595 )
2023-11-07 21:16:51 +08:00
屈轩
5b930df74f
fix(region): vendor update ( #18591 )
2023-11-07 20:37:03 +08:00
Zexi Li
c0db929d4c
Merge pull request #18585 from wanyaoqi/automated-cherry-pick-of-#18584-upstream-release-3.11
...
Automated cherry pick of #18584 : fix(host-deployer): use sync.lock on nbd connect/disconnect
2023-11-07 15:40:19 +08:00
wanyaoqi
3f74e94e8f
fix(host-deployer): use sync.lock on nbd connect/disconnect
2023-11-07 15:30:20 +08:00
wanyaoqi
2ea7da3746
Automated cherry pick of #18580 : fix(host): sync guest machine type on live migrate ( #18581 )
...
* fix(host): sync guest machine type on live migrate
* fix(host): checkout real anonymous pci devs on ensure pci address
2023-11-07 09:45:40 +08:00
wanyaoqi
1e196b1a9d
fix(host-deployer): detach nbd device do not block main thread ( #18577 )
2023-11-07 07:22:13 +08:00
Zexi Li
07b6906d30
Merge pull request #18572 from wanyaoqi/automated-cherry-pick-of-#18571-upstream-release-3.11
...
Automated cherry pick of #18571 : fix(host): live migrate ensure disk storate type
2023-11-06 16:47:58 +08:00
wanyaoqi
1b6c3aa20a
fix(host): live migrate ensure disk storate type
2023-11-06 14:43:55 +08:00
Zexi Li
1a1d941d30
Merge pull request #18566 from swordqiu/automated-cherry-pick-of-#18565-upstream-release-3.11
...
Automated cherry pick of #18565 : fix: qemu disk set serial as disk_id
2023-11-05 11:44:53 +08:00
Qiu Jian
9ff75d4656
fix: qemu disk set serial as disk_id
2023-11-04 18:50:03 +08:00
Zexi Li
181c99868e
Merge pull request #18560 from swordqiu/automated-cherry-pick-of-#18559-upstream-release-3.11
...
Automated cherry pick of #18559 : fix: host fail to migrate interface routes
2023-11-04 18:28:14 +08:00
Qiu Jian
634e52142a
fix: host fail to migrate interface routes
2023-11-03 23:58:30 +08:00
屈轩
af80f0d82c
fix(region): volcengine monitor ( #18558 )
2023-11-03 13:56:46 +08:00
wanyaoqi
eaa5c52456
fix(region,host): support traffic limit in change config ( #18554 )
2023-11-03 10:10:25 +08:00
Zexi Li
f7a17d64d6
Merge pull request #18550 from ioito/automated-cherry-pick-of-#18549-upstream-release-3.11
...
Automated cherry pick of #18549 : fix(region): esxi vm resize disk online
2023-11-02 15:02:22 +08:00
Zexi Li
422ae1e511
Merge pull request #18547 from wanyaoqi/automated-cherry-pick-of-#18546-upstream-release-3.11
...
Automated cherry pick of #18546 : fix(host-deployer): clean nbd mount on host-deployer start
2023-11-02 15:01:22 +08:00
ioito
4e44ae2932
fix(region): esxi vm resize disk online
2023-11-02 11:24:08 +08:00
wanyaoqi
38e11808df
fix(host-deployer): clean nbd mount on host-deployer start
2023-11-01 21:25:41 +08:00
屈轩
c9d20e7a14
fix(region): volc bucket storage class ( #18544 )
2023-11-01 20:02:16 +08:00
屈轩
8282619b86
fix(region): vendor update ( #18541 )
2023-11-01 19:13:40 +08:00
屈轩
4178d46cd9
fix(region): vendor update ( #18539 )
2023-11-01 18:52:08 +08:00
屈轩
be5075a74b
fix(region): vendor update ( #18535 )
2023-11-01 17:48:09 +08:00
gouqi11
b9aadb704d
update vendor ( #18533 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-11-01 15:41:46 +08:00
Zexi Li
0a78de3166
Merge pull request #18530 from wanyaoqi/automated-cherry-pick-of-#18529-upstream-release-3.11
...
Automated cherry pick of #18529 : fix(host): live migrate pass disk num queues
2023-11-01 14:58:13 +08:00
wanyaoqi
a84676af7c
fix(host): live migrate pass disk num queues
2023-11-01 14:48:24 +08:00
Zexi Li
84c1c7d8d4
Merge pull request #18525 from ioito/automated-cherry-pick-of-#18524-upstream-release-3.11
...
Automated cherry pick of #18524 : fix(region): skip vm eip not found error log
2023-11-01 10:13:46 +08:00
Zexi Li
858af35887
Merge pull request #18523 from ioito/automated-cherry-pick-of-#18522-upstream-release-3.11
...
Automated cherry pick of #18522 : fix(region): volcengine vm save image
2023-11-01 10:13:01 +08:00
Jian Qiu
ddc2b319ed
fix: xfs zerofree (experimental) ( #18527 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-11-01 09:41:18 +08:00
ioito
d6b28d270f
fix(region): skip vm eip not found error log
2023-10-31 20:43:18 +08:00
ioito
49c813659b
fix(region): volcengine vm save image
2023-10-31 20:40:47 +08:00
屈轩
9d0e545c66
fix(region): vendor update ( #18514 )
2023-10-31 20:24:09 +08:00
Zexi Li
2f7c4cd671
Merge pull request #18516 from wanyaoqi/automated-cherry-pick-of-#18515-upstream-release-3.11
...
Automated cherry pick of #18515 : fix(host): detect blk dev numqueues and nics(no id) pci addresses
2023-10-31 20:17:40 +08:00
Zexi Li
08dd95748c
Merge pull request #18519 from wanyaoqi/automated-cherry-pick-of-#18518-upstream-release-3.11
...
Automated cherry pick of #18518 : fix(region): reduce local disk max size to 10T
2023-10-31 19:51:14 +08:00
wanyaoqi
9b1622325f
fix(region): reduce local disk max size to 10T
2023-10-31 19:38:09 +08:00
Zexi Li
5480dfd1c8
Merge pull request #18504 from swordqiu/automated-cherry-pick-of-#18503-upstream-release-3.11
...
Automated cherry pick of #18503 : fix: dhcp hostname not compatible with some os
2023-10-31 19:28:49 +08:00
Zexi Li
da3167d3bc
Merge pull request #18499 from zexi/automated-cherry-pick-of-#18497-upstream-release-3.11
...
Automated cherry pick of #18497 : feat(apigateway): report running env
2023-10-31 19:28:06 +08:00
Zexi Li
c5923cc4b9
Merge pull request #18512 from gouqi11/automated-cherry-pick-of-#18511-upstream-release-3.11
...
Automated cherry pick of #18511 : fix(scheduledtask): supportCycleType week and month
2023-10-31 19:27:33 +08:00
wanyaoqi
732d70d6e5
fix(host): detect blk dev numqueues and nics(no id) pci addresses
2023-10-31 19:17:18 +08:00
屈轩
d33e1f6371
fix(keystone): validate time_zone input ( #18506 )
2023-10-31 18:41:26 +08:00
马鸿飞
8fddf20c68
fix(scheduledtask): supportCycleType week and month
2023-10-31 17:44:31 +08:00
Qiu Jian
9e2e2d6b8d
fix: dhcp hostname not compatible with some os
2023-10-31 12:02:53 +08:00
Zexi Li
304e520ce6
Merge pull request #18495 from ioito/automated-cherry-pick-of-#18494-upstream-release-3.11
...
Automated cherry pick of #18494 : fix(region): vendor update
2023-10-30 20:39:37 +08:00
Zexi Li
c895e5bc7c
Merge pull request #18479 from swordqiu/automated-cherry-pick-of-#18478-upstream-release-3.11
...
Automated cherry pick of #18478 : fix: scheduler ping/pong response mime
2023-10-30 20:37:25 +08:00
Zexi Li
c24b0a4082
feat(apigateway): report running env
2023-10-30 20:32:54 +08:00
ioito
f4b74c790c
fix(region): vendor update
2023-10-30 20:09:47 +08:00
屈轩
30f2fda002
fix(region): vendor update ( #18493 )
2023-10-30 17:03:39 +08:00
屈轩
097237eb8c
fix(region): qcloud security group rule priority ( #18489 )
2023-10-30 17:03:17 +08:00
屈轩
69e8ab1936
fix(region): avoid hostname has '-' suffix ( #18486 )
2023-10-30 17:02:32 +08:00
屈轩
0f8443905a
fix(region): gpu spec ( #18483 )
2023-10-30 14:39:09 +08:00
屈轩
f58532081e
fix(region): kvm secgroup filter ( #18477 )
2023-10-30 13:55:25 +08:00
Qiu Jian
335ff385c5
fix: scheduler ping/pong response mime
2023-10-30 13:17:09 +08:00
Zexi Li
99563805ec
Merge pull request #18457 from ioito/automated-cherry-pick-of-#18456-upstream-release-3.11
...
Automated cherry pick of #18456 : fix(region): add gpu log
2023-10-30 10:05:08 +08:00
Zexi Li
03b9501ccb
Merge pull request #18473 from ioito/automated-cherry-pick-of-#18472-upstream-release-3.11
...
Automated cherry pick of #18472 : fix(region): security group rule priority validate
2023-10-30 10:03:33 +08:00
Zexi Li
06f3ca8588
Merge pull request #18475 from wanyaoqi/automated-cherry-pick-of-#17671-upstream-release-3.11
...
Automated cherry pick of #17671 : feat(region): add guest rescue api
2023-10-30 10:02:12 +08:00
boironic@gmail.com
7f0fdc3739
feat(region): add guest rescue api && download initrd from baremetal tftp server && add baremetal agent ip finder & update pic address & support ip kernel config.
2023-10-29 20:56:26 +08:00
屈轩
6fb42c4d2c
fix(region): kvm server cnt ( #18470 )
2023-10-27 19:39:18 +08:00
ioito
3b98af9628
fix(region): security group rule priority validate
2023-10-27 19:35:54 +08:00
屈轩
3364a94082
fix(region): vendor update ( #18467 )
2023-10-27 16:40:50 +08:00
屈轩
0b3ae628c4
fix(region): vendor update ( #18465 )
2023-10-27 16:08:04 +08:00
屈轩
eb7eb8795b
fix(region): aliyun cloud_auto enable burst ( #18461 )
2023-10-27 15:18:41 +08:00
Zexi Li
9064790c84
Merge pull request #18443 from swordqiu/automated-cherry-pick-of-#18442-upstream-release-3.11
...
Automated cherry pick of #18442 : fix: support rocky linux guestfs
2023-10-27 10:04:14 +08:00
Zexi Li
af70eec115
Merge pull request #18449 from ioito/automated-cherry-pick-of-#18448-upstream-release-3.11
...
Automated cherry pick of #18448 : fix(region): 避免esxi vm没有被真正删除
2023-10-27 10:03:05 +08:00
屈轩
7a6a962790
fix(region): remove useless code ( #18455 )
2023-10-26 18:35:07 +08:00
ioito
fc8c45e2de
fix(region): add gpu log
2023-10-26 18:03:57 +08:00
屈轩
d867fd0251
fix(region): security group rule update ( #18452 )
2023-10-26 17:58:03 +08:00
ioito
fb911b41ab
fix(region): 避免esxi vm没有被真正删除
2023-10-26 14:48:22 +08:00
Zexi Li
756fd92a27
Merge pull request #18446 from ioito/automated-cherry-pick-of-#18445-upstream-release-3.11
...
Automated cherry pick of #18445 : fix(region): fix #18397 esxi vm set tags
2023-10-26 12:11:46 +08:00
ioito
a3b080334c
fix(region): fix #18397 esxi vm set tags
2023-10-26 11:41:29 +08:00
屈轩
f03617c18f
fix(region): vendor update ( #18441 )
2023-10-26 11:23:29 +08:00
Qiu Jian
f547d6bc47
fix: support rocky linux guestfs
2023-10-26 11:20:35 +08:00
Zexi Li
c1d148d4e3
Merge pull request #18417 from swordqiu/automated-cherry-pick-of-#18416-upstream-release-3.11
...
Automated cherry pick of #18416 : fix: auto sync esxi host status periodically
2023-10-26 10:08:49 +08:00
Zexi Li
ecc63f3501
Merge pull request #18436 from wanyaoqi/automated-cherry-pick-of-#18435-upstream-release-3.11
...
Automated cherry pick of #18435 : Fix/misc fix 20231025
2023-10-26 10:07:58 +08:00
Zexi Li
9ce1f2322c
Merge pull request #18438 from ioito/automated-cherry-pick-of-#18434-upstream-release-3.11
...
Automated cherry pick of #18434 : Hotfix/qx clean scheduler
2023-10-26 10:06:25 +08:00
ioito
f0ac779e55
fix(region): 避免频繁清理调度器缓存
2023-10-26 09:55:03 +08:00
wanyaoqi
835bdf2c15
fix(region): guest start check vcpu is enough
2023-10-25 23:55:26 +08:00
wanyaoqi
0508225799
fix(host): skip isolated device probe on kvm not support
2023-10-25 23:54:42 +08:00
wanyaoqi
069a9a8eaf
fix(region): rebuild root update guest bios
2023-10-25 23:54:42 +08:00
屈轩
14300e2f91
fix(region): fix cloudaccount sync projectMapping ( #18432 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-10-25 20:53:47 +08:00
gouqi11
204a059cae
feat(cloudmon): support lbMetric for MetricTypeDriver ( #18430 )
...
Co-authored-by: 马鸿飞 <mahongfei@yunion.cn >
2023-10-25 20:38:02 +08:00
屈轩
675468f48c
fix(region): vendor update ( #18429 )
2023-10-25 19:24:42 +08:00
屈轩
6476cea4dc
fix(region): vendor update ( #18426 )
2023-10-25 18:24:53 +08:00
屈轩
860109369d
fix(region): secgroup rule fix ( #18415 )
2023-10-25 17:58:13 +08:00
Zexi Li
82f1952842
Merge pull request #18419 from wanyaoqi/automated-cherry-pick-of-#18418-upstream-release-3.11
...
Automated cherry pick of #18418 : fix(host): live migrate misc fix
2023-10-25 10:20:48 +08:00
wanyaoqi
601d539bba
fix(host): live migrate misc fix
2023-10-25 01:59:01 +08:00
Qiu Jian
e89c3a78da
fix: auto sync esxi host status periodically
2023-10-24 21:50:44 +08:00
Zexi Li
80b4caeeda
feat(climc): always try to print id and name firstly ( #18412 )
2023-10-24 21:48:35 +08:00
Zexi Li
f1394bed02
feat(climc): always try to print id and name firstly ( #18410 )
2023-10-24 21:48:26 +08:00
屈轩
f4d34c8ee4
Revert "fix(common): remove service default policy ( #18312 )" ( #18413 )
...
This reverts commit 6ff9e75fb1 .
2023-10-24 21:47:50 +08:00
Zexi Li
e2fb312311
Merge pull request #18386 from swordqiu/automated-cherry-pick-of-#18385-upstream-release-3.11
...
Automated cherry pick of #18385 : fix: capabilities brand revisit
2023-10-24 20:01:47 +08:00
Zexi Li
e2af2f2602
Merge pull request #18409 from ioito/automated-cherry-pick-of-#18408-upstream-release-3.11
...
Automated cherry pick of #18408 : fix(region): kube cluster brand
2023-10-24 19:50:14 +08:00
ioito
6fadaec519
fix(region): kube cluster brand
2023-10-24 18:50:26 +08:00
Zexi Li
30746be01e
Merge pull request #18407 from gouqi11/automated-cherry-pick-of-#18396-upstream-release-3.11
...
Automated cherry pick of #18396 : feat(notify): Allow direct notification sending
2023-10-24 15:39:00 +08:00
马鸿飞
b0ccc84260
feat(notify): Allow direct notification sending
2023-10-24 15:24:42 +08:00
Zexi Li
b7db6d4535
Merge pull request #18404 from zexi/automated-cherry-pick-of-#18403-upstream-release-3.11
...
Automated cherry pick of #18403 : fix(scheduler): fetch host storages directly
2023-10-24 14:37:28 +08:00
Zexi Li
bdaf659a28
fix(scheduler): fetch host storages directly
2023-10-24 14:26:49 +08:00
Zexi Li
6583094e85
Merge pull request #18401 from ioito/automated-cherry-pick-of-#18400-upstream-release-3.11
...
Automated cherry pick of #18400 : fix(region): aws eip not found error
2023-10-24 14:23:37 +08:00
ioito
631c255970
fix(region): aws eip not found error
2023-10-24 13:25:30 +08:00
Zexi Li
51f5b01c4e
Merge pull request #18394 from wanyaoqi/automated-cherry-pick-of-#18393-upstream-release-3.11
...
Automated cherry pick of #18393 : fix(host-deployer): deploy qga conf according hypervisor
2023-10-23 11:43:27 +08:00
Zexi Li
51ab18e0ba
Merge pull request #18384 from wanyaoqi/automated-cherry-pick-of-#18383-upstream-release-3.11
...
Automated cherry pick of #18383 : fix(region,host): live migrate disk driver determines the migration mode
2023-10-23 11:18:03 +08:00
Zexi Li
e0ab303771
Merge pull request #18390 from ioito/automated-cherry-pick-of-#18389-upstream-release-3.11
...
Automated cherry pick of #18389 : fix(apigateway): baremetal usage
2023-10-23 11:17:15 +08:00
wanyaoqi
e8f4e85943
fix(host-deployer): deploy qga conf according hypervisor
2023-10-23 10:48:10 +08:00
ioito
6bf139297c
fix(apigateway): baremetal usage
2023-10-23 10:38:14 +08:00
Zexi Li
6e679a88be
Merge pull request #18356 from gouqi11/automated-cherry-pick-of-#18161-upstream-release-3.11
...
Automated cherry pick of #18161 : feat(scheduledTask): support cycle_hour
2023-10-23 10:17:33 +08:00
Qiu Jian
e2a843f018
fix: capabilities brand revisit
2023-10-23 10:16:32 +08:00
wanyaoqi
679ddfa3d0
fix(region,host): live migrate disk driver determines the migration mode
2023-10-23 10:12:21 +08:00
马鸿飞
50bd35b558
feat(scheduledTask): support cycle_hour
2023-10-23 10:07:05 +08:00
Jian Qiu
675d453f02
fix: vpcagent sync error ( #18382 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-23 09:27:32 +08:00
wanyaoqi
f5b1c828f1
feat(region,host): cloudpods guest convert to kvm guest ( #18378 )
2023-10-23 09:25:51 +08:00
Zexi Li
e97408dca8
fix(scheduler): improve scheduler prefer and avoid tags strategy ( #18373 )
2023-10-20 20:46:14 +08:00
Zexi Li
8a89981f79
Merge pull request #18366 from swordqiu/automated-cherry-pick-of-#18365-upstream-release-3.11
...
Automated cherry pick of #18365 : fix: auto convert missing subformat images
2023-10-20 12:28:28 +08:00
Zexi Li
5215a7baff
Merge pull request #18363 from swordqiu/automated-cherry-pick-of-#18362-upstream-release-3.11
...
Automated cherry pick of #18362 : fix: fail to fetch admin ssh keypair
2023-10-20 10:35:18 +08:00
Qiu Jian
dd2a61e9a6
fix: auto convert missing subformat images
2023-10-20 10:23:51 +08:00
Qiu Jian
b394e58ee4
fix: fail to fetch admin ssh keypair
2023-10-20 05:42:05 +08:00
Zexi Li
7e7b6512f4
Merge pull request #18361 from ioito/automated-cherry-pick-of-#18360-upstream-release-3.11
...
Automated cherry pick of #18360 : fix(region): aws lb sync panic
2023-10-19 20:34:13 +08:00
ioito
b7ec468b03
fix(region): aws lb sync panic
2023-10-19 20:15:21 +08:00
Jian Qiu
b6e1e9d226
fix: allow vmware network associate with multiple wires ( #18341 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-19 09:15:40 +08:00
wanyaoqi
64310bf4df
fix(host-deployer): change netdev prefix to "en" on nics has different driver ( #18330 )
...
Signed-off-by: wanyaoqi <d3lx.yq@gmail.com >
2023-10-18 20:40:46 +08:00
Jian Qiu
99f671d567
fix: missing project mapping body ( #18353 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-18 20:39:38 +08:00
屈轩
d5a3913a1f
fix: docgengo ( #18351 )
2023-10-18 06:19:10 -05:00
屈轩
a6bab03c85
feature: add support for for VolcEngine ( #18349 )
...
Co-authored-by: kongrui <kongr@lamda.nju.edu.cn >
2023-10-18 06:05:41 -05:00
Zexi Li
2e761505bf
Merge pull request #18343 from swordqiu/automated-cherry-pick-of-#18342-upstream-release-3.11
...
Automated cherry pick of #18342 : fix: unable to recognize anolis os
2023-10-18 15:00:30 +08:00
屈轩
ca89d83e4f
fix(climc): 避免climc交互模式下--help自动退出 ( #18339 )
2023-10-17 20:58:49 -05:00
Qiu Jian
aafab22bb7
fix: unable to recognize anolis os
2023-10-18 01:54:29 +08:00
屈轩
6d49f8c5c8
fix(region): standardization stage name ( #18300 )
2023-10-18 01:26:36 +08:00
Zexi Li
c59daea668
Merge pull request #18323 from gouqi11/automated-cherry-pick-of-#18320-upstream-release-3.11
...
Automated cherry pick of #18320 : fix(notify): fix role subscriber groupTimes
2023-10-17 12:24:11 +08:00
Zexi Li
dd151944ca
Merge pull request #18326 from wanyaoqi/automated-cherry-pick-of-#18325-upstream-release-3.11
...
Automated cherry pick of #18325 : fix(scheduler): isolated device predicate miss sriov nic
2023-10-17 11:51:10 +08:00
wanyaoqi
0fa98f7b82
fix(scheduler): isolated device predicate miss sriov nic
2023-10-16 16:22:19 +08:00
马鸿飞
99afc444a7
fix(notify): fix role subscriber groupTimes
2023-10-16 15:59:33 +08:00
屈轩
847459f2a8
fix(common): distinguish system and user log by is_system_account ( #18317 )
2023-10-15 20:58:09 -05:00
屈轩
6ff9e75fb1
fix(common): remove service default policy ( #18312 )
2023-10-13 14:00:39 +08:00
屈轩
115eb587e3
fix(region): show network details with dns ( #18289 )
2023-10-13 07:43:42 +08:00
屈轩
1b74a9c6a0
fix(keystone): policy result ( #18285 )
2023-10-13 07:41:12 +08:00
Jian Qiu
b4b9485068
fix: update vendor for edito retry ( #18309 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-13 07:29:04 +08:00
Jian Qiu
4e9957c3f2
fix: climc server-logininfo action ( #18296 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-12 20:19:02 +08:00
屈轩
afc77d0c7b
fix(region): classify invalid access key error ( #18305 )
2023-10-12 20:17:49 +08:00
屈轩
05ab9311b3
fix(region): avoid ctyun signature verification failed ( #18302 )
2023-10-12 19:08:39 +08:00
屈轩
0809d6ecfa
fix(region): remove ctyun useless env paramenter ( #18293 )
2023-10-12 18:06:12 +08:00
屈轩
d97ec1c7b5
fix(region): aws userdata error fix ( #18290 )
2023-10-12 17:27:31 +08:00
Jian Qiu
2a5ba4d77f
fix: update vendor 20231012 for sqlchemy ( #18282 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-12 16:56:59 +08:00
屈轩
8bd9b78e21
fix(region): history usage ( #18260 )
2023-10-12 16:30:59 +08:00
Zexi Li
7c836a4993
Merge pull request #18279 from gouqi11/automated-cherry-pick-of-#18267-upstream-release-3.11
...
Automated cherry pick of #18267 : feat(notify): support db_dispatcher notify
2023-10-12 15:51:13 +08:00
马鸿飞
7423ca9726
feat(notify): support db_dispatcher notify
2023-10-12 15:39:54 +08:00
Zexi Li
a1e77ea061
Merge pull request #18276 from ioito/automated-cherry-pick-of-#18275-upstream-release-3.11
...
Automated cherry pick of #18275 : fix(region): use project sshkeypair to ssh vm
2023-10-12 14:59:45 +08:00
wanyaoqi
accc92da16
fix(host): check qga connect is closed ( #18272 )
2023-10-12 14:49:02 +08:00
ioito
0d85f41098
fix(region): use project sshkeypair to ssh vm
2023-10-12 14:24:02 +08:00
Zexi Li
2881f82226
Merge pull request #18265 from ioito/automated-cherry-pick-of-#18264-upstream-release-3.11
...
Automated cherry pick of #18264 : fix(region): dns record cname check
2023-10-11 18:09:26 +08:00
Zexi Li
2b33c44d59
Merge pull request #18254 from zexi/server-ip-regexp-list
...
feat(region): filter server ip_addrs by REGEXP
2023-10-11 17:19:24 +08:00
屈轩
b32444047d
fix(region): wait vm deleted ( #18262 )
2023-10-11 17:19:15 +08:00
ioito
560444bc25
fix(region): dns record cname check
2023-10-11 17:12:30 +08:00
Zexi Li
0c0bc34e67
Merge pull request #18251 from swordqiu/automated-cherry-pick-of-#18250-upstream-release-3.11
...
Automated cherry pick of #18250 : fix: guest start params revisit
2023-10-11 17:11:06 +08:00
Zexi Li
7104d73ba6
feat(region): filter server ip_addrs by REGEXP
2023-10-11 17:03:16 +08:00
屈轩
ff414105cb
fix: vendor update ( #18258 )
2023-10-11 16:22:28 +08:00
Qiu Jian
02db6f01e7
fix: guest start params revisit
2023-10-11 05:43:57 +08:00
Zexi Li
ca2ebb35f4
Merge pull request #18249 from zexi/automated-cherry-pick-of-#18246-upstream-release-3.11
...
Automated cherry pick of #18246 : fix(monitor): select host that isn't in source hosts as target
2023-10-10 20:04:19 +08:00
Zexi Li
b21702417a
fix(monitor): select host that isn't in source hosts as target
2023-10-10 20:03:55 +08:00
Jian Qiu
83d02d2bf0
fix: allow specify desktop linux os that not allow root login ( #18244 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-09 18:38:07 +08:00
wanyaoqi
17733cdd80
fix(host): host sysinfo metadata double quota ( #18240 )
2023-10-09 18:36:40 +08:00
Zexi Li
37f2bc3fef
Merge pull request #18236 from wanyaoqi/automated-cherry-pick-of-#18235-upstream-release-3.11
...
Automated cherry pick of #18235 : fix(host-deployer): deploy qga conf ensure /etc/sysconfig dir
2023-10-09 14:56:30 +08:00
Jian Qiu
c00028ccc6
fix: handle old style auth token ( #18233 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-09 12:30:28 +08:00
wanyaoqi
45b744bc50
fix(host-deployer): deploy qga conf ensure /etc/sysconfig dir
2023-10-09 12:23:21 +08:00
Jian Qiu
638c5130c6
fix: unauthorized error should return 401 ( #18230 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-08 21:54:21 +08:00
Jian Qiu
5d59e54085
fix: missing invalid token response ( #18227 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-08 18:27:38 +08:00
Jian Qiu
e319338460
fix: shorten keystone token ( #18223 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-08 11:20:35 +08:00
Zexi Li
f5d466e359
Merge pull request #18220 from gouqi11/automated-cherry-pick-of-#18219-upstream-release-3.11
...
Automated cherry pick of #18219 : feat: support policy and cors for bucket
2023-10-07 17:56:29 +08:00
马鸿飞
5bfa0e03ee
feat: support policy and cors for bucket
2023-10-07 17:51:20 +08:00
Zexi Li
27b6f8b8d6
Merge pull request #18211 from ioito/automated-cherry-pick-of-#18210-upstream-release-3.11
...
Automated cherry pick of #18210 : fix(region): vendor update
2023-10-07 13:18:13 +08:00
Zexi Li
27bbc9512f
Merge pull request #18208 from wanyaoqi/automated-cherry-pick-of-#18207-upstream-release-3.11
...
Automated cherry pick of #18207 : feat(region,glance): from cloudaccount to enable vmdk target format
2023-10-07 13:16:01 +08:00
ioito
90566723a2
fix(region): vendor update
2023-10-07 10:58:18 +08:00
wanyaoqi
23a7b8f15f
feat(region,glance): from cloudaccount to enable vmdk target format
2023-10-07 09:59:39 +08:00
Jian Qiu
8f4fe468ec
fix: async refresh revoked tokens ( #18205 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-06 13:45:18 +08:00
Zexi Li
c3d782c358
Merge pull request #18200 from swordqiu/automated-cherry-pick-of-#18199-upstream-release-3.11
...
Automated cherry pick of #18199 : feature: invalidate auth token
2023-10-05 19:22:21 +08:00
Qiu Jian
9f7458b58f
feature: invalidate auth token
2023-10-05 03:41:15 +08:00
Zexi Li
c811818017
Merge pull request #18190 from swordqiu/automated-cherry-pick-of-#18183-upstream-release-3.11
...
Automated cherry pick of #18183 : feature: SUSE guest support
2023-10-04 00:38:13 +08:00
Qiu Jian
1d1d93858a
feature: SUSE guest support
2023-10-02 00:34:19 +08:00
Jian Qiu
a2b17a5492
fix: rebuild root support deploy params ( #18188 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-02 00:16:17 +08:00
Jian Qiu
16d380813d
fix: host nics api ( #18185 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-01 23:40:34 +08:00
Jian Qiu
7e44c015b3
fix: add apis for logininfo ( #18181 )
...
Co-authored-by: Qiu Jian <qiujian@yunionyun.com >
2023-10-01 23:39:58 +08:00
Zexi Li
5b066bfd8c
Merge pull request #18163 from swordqiu/automated-cherry-pick-of-#18162-upstream-release-3.11
...
Automated cherry pick of #18162 : fix: fail purge disk due to getMastHost failure
2023-09-27 22:52:30 +08:00
Zexi Li
28d541ba78
Merge pull request #18169 from zexi/automated-cherry-pick-of-#18167-upstream-release-3.11
...
Automated cherry pick of #18167 : fix(scheduler): some joint resources are not synced
2023-09-27 22:51:42 +08:00
Zexi Li
f27087867a
Merge pull request #18171 from zexi/automated-cherry-pick-of-#18072-upstream-release-3.11
...
Automated cherry pick of #18072 : fix(climc): delete the backup machine from the offline host
2023-09-27 17:10:52 +08:00
hoganlxj
f24cf2fdb0
Update clean_host.sh
2023-09-27 17:09:04 +08:00
Zexi Li
7735720a5e
fix(scheduler): some joint resources are not synced
2023-09-27 16:47:36 +08:00
Qiu Jian
e8a52c23be
fix: fail purge disk due to getMastHost failure
2023-09-27 14:32:42 +08:00
屈轩
710905c1f2
fix(region): change project log detail ( #18154 )
2023-09-26 17:58:53 +08:00
Zexi Li
475e698227
Merge pull request #18157 from wanyaoqi/automated-cherry-pick-of-#18156-upstream-release-3.11
...
Automated cherry pick of #18156 : fix(region): remove ansible restart network on guest sync
2023-09-26 17:42:56 +08:00
wanyaoqi
ea3e855655
fix(region): remove ansible restart network on guest sync
2023-09-26 15:47:19 +08:00
Zexi Li
76bd871ef8
Merge pull request #18151 from zexi/automated-cherry-pick-of-#18124-upstream-release-3.11
...
Automated cherry pick of #18124 : fix: charset mismatch in tenant cache convert_ids
2023-09-25 16:58:33 +08:00
Qiu Jian
b6446c8007
fix: charset mismatch in tenant cache convert_ids
2023-09-25 16:58:12 +08:00
Zexi Li
bd3c32b3a3
Merge pull request #18150 from zexi/automated-cherry-pick-of-#18126-upstream-release-3.11
...
Automated cherry pick of #18126 : fix(region): hide agent status
2023-09-25 16:56:53 +08:00
Zexi Li
27b0b342b4
fix(region): hide agent status
2023-09-25 16:56:09 +08:00
Zexi Li
ef52ad5f25
Merge pull request #18146 from ioito/automated-cherry-pick-of-#18145-upstream-release-3.11
...
Automated cherry pick of #18145 : fix(region): aliyun health check tls error
2023-09-25 16:53:49 +08:00
屈轩
efdb5beb71
fix(region): avoid panic after created vm ( #18142 )
2023-09-25 15:12:43 +08:00
ioito
7de4c55dfc
fix(region): aliyun health check tls error
2023-09-25 15:11:10 +08:00
Zexi Li
6ee8be68cd
Merge pull request #18137 from ioito/automated-cherry-pick-of-#18136-upstream-release-3.11
...
Automated cherry pick of #18136 : fix(region): account ctx unlock
2023-09-22 16:49:54 +08:00
Zexi Li
f59d2bd256
Merge pull request #18115 from ioito/automated-cherry-pick-of-#18114-upstream-release-3.11
...
Automated cherry pick of #18114 : fix(region): network update detail error
2023-09-22 16:48:33 +08:00
ioito
1f6f9d6adc
fix(region): account ctx unlock
2023-09-22 16:22:39 +08:00
屈轩
bac4faf202
fix(region): aws disk type ( #18133 )
2023-09-22 14:17:31 +08:00
ioito
c2546c31a7
fix(region): network update detail error
2023-09-22 10:11:06 +08:00
Zexi Li
ea50886aa1
Merge pull request #18097 from wanyaoqi/automated-cherry-pick-of-#18096-upstream-release-3.11
...
Automated cherry pick of #18096 : Fix/backup guest prelaunch
2023-09-21 22:43:58 +08:00
Zexi Li
1cf6a5d9db
Merge pull request #18092 from wanyaoqi/automated-cherry-pick-of-#18091-upstream-release-3.11
...
Automated cherry pick of #18091 : fix(host): insert iso name not correct
2023-09-21 22:42:04 +08:00
Zexi Li
6cb3a055ae
Merge pull request #18081 from wanyaoqi/automated-cherry-pick-of-#18080-upstream-release-3.11
...
Automated cherry pick of #18080 : Fix/host delete validate
2023-09-21 22:41:26 +08:00
Zexi Li
a5b782fdeb
Merge pull request #18067 from wanyaoqi/automated-cherry-pick-of-#18065-upstream-release-3.11
...
Automated cherry pick of #18065 : fix(region,host): cancel migrate sync guest status
2023-09-21 22:40:37 +08:00
Zexi Li
9d94a7355d
Merge pull request #18077 from wanyaoqi/automated-cherry-pick-of-#18076-upstream-release-3.11
...
Automated cherry pick of #18076 : fix(region,host): guest save image restart not work
2023-09-21 22:39:18 +08:00
Zexi Li
4cb465ab35
Merge pull request #18088 from wanyaoqi/automated-cherry-pick-of-#17858-upstream-release-3.11
...
Automated cherry pick of #17858 : feat(region,host,host-deployer): add qga set network
2023-09-21 20:57:02 +08:00
Zexi Li
00a1659ce8
Merge pull request #18074 from wanyaoqi/automated-cherry-pick-of-#18073-upstream-release-3.11
...
Automated cherry pick of #18073 : feat(region): host list filter by host storage type
2023-09-21 20:54:54 +08:00
屈轩
3d329d7412
fix(esxi-agent): vmware hostname ( #18122 )
2023-09-21 20:50:24 +08:00
屈轩
7c62173d3f
fix(region): cloudpods userdata ( #18118 )
2023-09-21 20:49:32 +08:00
屈轩
3c14711346
fix(region): avoid deadlock for delete account ( #18100 )
2023-09-21 14:56:30 +08:00
屈轩
a8ba3a4ec5
fix(region): fix #18106 remove change chonfig stop charing restrict ( #18108 )
2023-09-21 14:55:23 +08:00
屈轩
3daf38b6a0
fix(region): guest vnc error ( #18103 )
2023-09-21 14:54:40 +08:00
屈轩
fcc5b2eae1
fix(region): server sku cpu arch filter ( #18111 )
2023-09-21 14:53:07 +08:00
wanyaoqi
9d7a49ebdf
fix(host): avoid panic on host record not init
2023-09-21 11:04:39 +08:00
wanyaoqi
3d1507b0e4
fix(host): cancel backup guest prelaunch
2023-09-21 11:04:39 +08:00
wanyaoqi
e5be78e740
fix(host): insert iso name not correct
2023-09-20 21:24:56 +08:00
屈轩
22d0608786
fix(region): kube cluster version ( #18084 )
2023-09-20 20:18:16 +08:00
屈轩
2e74e42bde
fix(region): vendor update ( #18087 )
2023-09-20 20:17:24 +08:00
chentianxiang
260a9cbe87
feat(region,host,host-deployer):use qga set network
2023-09-20 20:07:24 +08:00
wanyaoqi
1f4079a863
fix(region): validate is reserve all cpus
2023-09-20 19:41:04 +08:00
wanyaoqi
53d4b0c1b7
fix(region): host delete validate backup guests
2023-09-20 19:41:04 +08:00
wanyaoqi
a538e215b8
fix(region,host): guest save image restart not work
2023-09-20 19:37:25 +08:00
wanyaoqi
00a1ddc508
feat(region): host list filter by host storage type
2023-09-20 19:34:30 +08:00
wanyaoqi
a49148c7e4
fix(region,host): cancel migrate sync guest status
2023-09-20 00:21:02 +08:00