我有一个kubernetes部署,由于某种原因,它创建了两个副本集。我不知道为什么。当我执行const record = {
photoURL: this.state.user.photoURL,
displayName: this.state.user.displayName,
image: task.snapshot.downloadURL
};
const dbRef = firebase.database().ref('pictures');
const newPicture = dbRef.push();
newPicture.set(record);
});
时,他们俩都说他们是由同一部署管理的。当我删除并重新创建部署时,它会一致地执行。有没有人有任何调查可能导致这种情况的指针?